HtmlNodeGetAttributeValue Method (String, Boolean) |
Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 8.0.0.0 (8.0.0.0)
Syntax public bool GetAttributeValue(
string name,
bool def
)
Public Function GetAttributeValue (
name As String,
def As Boolean
) As Boolean
Parameters
- name
- Type: SystemString
The name of the attribute to get. May not be null. - def
- Type: SystemBoolean
The default value to return if not found.
Return Value
Type:
BooleanThe value of the attribute if found, the default value if not found.
See Also