| 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.HtmlAgilityPackAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 3.3.0.0 (3.3.0.0)
Syntaxpublic 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