HtmlAttributeReader members
The HtmlAttributeReader class provides a reader for attributes inside an HTML tag token.
The HtmlAttributeReader type exposes the following members.
Properties
Name | Description | |
---|---|---|
HasValue | The HasValue property gets a value indicating whether the current attribute as an associated value. | |
Id | The Id property gets the current attribute identifier. | |
NameIsLong | The NameIsLong property gets a value indicating whether the attribute name is longer than 128 characters. | |
ValueIsLong | The ValueIsLong property gets a value indicating whether the attribute value is longer than 128 characters. |
Top
Methods
Name | Description | |
---|---|---|
ReadName() | The ReadName() method returns the name of the attribute as a string. | |
ReadName([], Int32, Int32) | The ReadName([], Int32, Int32) method returns an arbitrarily long attribute name in chunks. | |
ReadNext | The ReadNext() method advances to the next attribute in the tag token. | |
ReadValue() | The ReadValue() method returns the attribute value as a string. | |
ReadValue([], Int32, Int32) | The ReadValue([], Int32, Int32) method reads the current attribute value into a character array. |
Top