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!

XmlElement.RemoveAttribute (String, String)

Removes an attribute specified by LocalName and NamespaceURI.

[Visual Basic]
Overloads Overridable Public Sub RemoveAttribute( _
   ByVal localName As String, _
   ByVal namespaceURI As String _
)
[C#]
public virtual void RemoveAttribute(
   string localName,
   string namespaceURI
);
[C++]
public: virtual void RemoveAttribute(
   String* localName,
   String* namespaceURI
);
[JScript]
public function RemoveAttribute(
   localName : String,
   namespaceURI : String
);

Parameters

localName
LocalName of the attribute to remove.
namespaceURI
NamespaceURI of the attribute to remove.

Exceptions

Exception Type Condition
NO_MODIFICATION_ALLOWED_ERR The node is read-only.

See Also

XmlElement Class | XmlElement Members | System.NewXml Namespace | XmlElement.RemoveAttribute Overload List