|
XmlExtensionsGetAttributeValue Method
|
Safely gets or sets an XML node's attribute.
Namespace: GSF.XmlAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntaxpublic static string GetAttributeValue(
this XmlNode node,
string name
)
<ExtensionAttribute>
Public Shared Function GetAttributeValue (
node As XmlNode,
name As String
) As String
public:
[ExtensionAttribute]
static String^ GetAttributeValue(
XmlNode^ node,
String^ name
)
[<ExtensionAttribute>]
static member GetAttributeValue :
node : XmlNode *
name : string -> string
GSF.Xml.XmlExtensions.GetAttributeValue = function(node, name);
View SourceParameters
- node XmlNode
- A XmlNode to query.
- name String
- A String name of the value to get.
Return Value
StringA
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).
RemarksIf you get an attribute that does not exist, null will be returned.
See Also