TagStruct Struct

The data that the Tag object contains.

C#
public struct TagStruct
Inheritance
TagStruct

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 class and id attribute).

Classes

Gets or sets the values of the class attribute.

Id

Gets or sets the value of the id attribute.

Methods

Equals(object) (Inherited from ValueType)
GetHashCode() (Inherited from ValueType)
ToString() (Inherited from ValueType)
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; }

Property Value