Click or drag to resize

XmlExtensionsGetAttributeValue Method

Safely gets or sets an XML node's attribute.

Namespace: GSF.Xml
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static string GetAttributeValue(
	this XmlNode node,
	string name
)
View Source

Parameters

node  XmlNode
A XmlNode to query.
name  String
A String name of the value to get.

Return Value

String
A String value returned for the attribute's value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type XmlNode. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
If you get an attribute that does not exist, null will be returned.
See Also