Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ImageInformation.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
11 {
12 private string description = null;
13
18 {
19 }
20
25 public string Description
26 {
27 get => this.description;
28 set => this.description = value;
29 }
30
32 public override bool Equals(object obj)
33 {
34 if (obj is ImageInformation Image)
35 {
36 return base.Equals(Image) &&
37 this.description == Image.description;
38 }
39 else
40 return false;
41 }
42
44 public override int GetHashCode()
45 {
46 int Result = base.GetHashCode();
47
48 if (!(this.description is null))
49 Result ^= Result << 5 ^ this.description.GetHashCode();
50
51 return Result;
52 }
53
54 }
55}
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.