NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlDocument.CreateAttribute (String, String)

Creates an XmlAttribute with the specified LocalName and NamespaceURI.

[Visual Basic]
Overloads Overridable Public Function CreateAttribute( _
   ByVal qualifiedName As String, _
   ByVal namespaceURI As String _
) As XmlAttribute
[C#]
public virtual XmlAttribute CreateAttribute(
   string qualifiedName,
   string namespaceURI
);
[C++]
public: virtual XmlAttribute* CreateAttribute(
   String* qualifiedName,
   String* namespaceURI
);
[JScript]
public function CreateAttribute(
   qualifiedName : String,
   namespaceURI : String
) : XmlAttribute;

Parameters

qualifiedName
Name of the attribute.
namespaceURI
NamespaceURI of the attribute.

Return Value

The new XmlAttribute.

See Also

XmlDocument Class | XmlDocument Members | System.NewXml Namespace | XmlDocument.CreateAttribute Overload List