Class Property
public class Property : IEquatable<Property>
- Inheritance
-
Property
- Implements
- Inherited Members
Constructors
Property(string, dynamic?, Element?)
Initializes a new instance of the Property class.
public Property(string key, dynamic? value, Element? element = null)
Parameters
key
stringThe key of the property.
value
dynamicThe value of the property.
element
ElementThe (optional) element that the property is associated with.
Properties
Element
Gets the element that this property is associated with.
public Element? Element { get; }
Property Value
Key
Gets the key of the property.
public string Key { get; }
Property Value
Value
Gets the value of the property.
public dynamic? Value { get; }
Property Value
- dynamic
Methods
Equals(Property?)
public bool Equals(Property? other)
Parameters
other
Property
Returns
Equals(object?)
public override bool Equals(object? obj)
Parameters
obj
object
Returns
GetHashCode()
public override int GetHashCode()
Returns
ToString()
public override string ToString()