TagStruct Struct
The data that the Tag object contains.
C#
public struct TagStruct
- Inheritance
Properties
| Name |
Gets or sets the name of the tag. |
| Children |
Gets or sets the child nodes that the tag contains. |
| Attributes |
Gets or sets the attributes of the tag (except |
| Classes |
Gets or sets the values of the |
| Id |
Gets or sets the value of the |
Methods
| Equals(object) |
(Inherited from Value |
| GetHashCode() |
(Inherited from Value |
| ToString() |
(Inherited from Value |
| GetType() | (Inherited from object) |
| MemberwiseClone() | (Inherited from object) |
Properties Detail
Name
Gets or sets the name of the tag.
C#
public string Name { get; set; }
Property Value
Children
Gets or sets the child nodes that the tag contains.
C#
public ImmutableList<Node> Children { get; set; }
Property Value
Attributes
Gets or sets the attributes of the tag (except class and
id attribute).
C#
public IImmutableDictionary<string, string> Attributes { get; set; }
Property Value
Classes
Gets or sets the values of the class attribute.
C#
public ImmutableList<string> Classes { get; set; }
Property Value
Id
Gets or sets the value of the id attribute.
C#
public string Id { get; set; }