Class Link
Represents web link.
public class Link : ObservableObject, INotifyPropertyChanged, IEquatable<Link>
- Inheritance
-
Link
- Implements
- Inherited Members
Constructors
Link()
Creates new instance of Link.
public Link()
Link(string, string)
Creates new instance of Link with specific values.
public Link(string name, string url)
Parameters
Properties
Name
Gets or sets name of the link.
public string Name { get; set; }
Property Value
Url
Gets or sets web based URL.
public string Url { get; set; }
Property Value
Methods
Equals(Link)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Link other)
Parameters
other
LinkAn object to compare with this object.
Returns
- bool
true if the current object is equal to the
other
parameter; otherwise, false.
GetCopy()
public Link GetCopy()