8 private int? width =
null;
9 private int? height =
null;
25 set => this.width = value;
35 set => this.height = value;
39 public override bool Equals(
object obj)
43 return base.Equals(Video) &&
44 this.width == Video.width &&
45 this.height == Video.height;
54 int Result = base.GetHashCode();
56 if (this.width.HasValue)
57 Result ^= Result << 5 ^ this.width.Value.GetHashCode();
59 if (this.height.HasValue)
60 Result ^= Result << 5 ^ this.height.Value.GetHashCode();
Audio information, as defined by the Open Graph protocol.
Video information, as defined by the Open Graph protocol.
int? Height
The number of pixels high. If not defined, null is returned.
override bool Equals(object obj)
int? Width
The number of pixels wide. If not defined, null is returned.
VideoInformation()
Video information, as defined by the Open Graph protocol.
override int GetHashCode()