Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ImageInformation.cs
2{
7 {
8 private string description = null;
9
14 {
15 }
16
21 public string Description
22 {
23 get => this.description;
24 set => this.description = value;
25 }
26
28 public override bool Equals(object obj)
29 {
30 if (obj is ImageInformation Image)
31 {
32 return base.Equals(Image) &&
33 this.description == Image.description;
34 }
35 else
36 return false;
37 }
38
40 public override int GetHashCode()
41 {
42 int Result = base.GetHashCode();
43
44 if (!(this.description is null))
45 Result ^= Result << 5 ^ this.description.GetHashCode();
46
47 return Result;
48 }
49
50 }
51}
Image information, as defined by the Open Graph protocol.
string Description
A description of what is in the image (not a caption). If not defined, null is returned.
ImageInformation()
Image information, as defined by the Open Graph protocol.
Video information, as defined by the Open Graph protocol.