XmlnsDictionary.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the item with the specified prefix key from the XmlnsDictionary.
Overloads
Remove(Object) |
Removes the item with the specified prefix key from the XmlnsDictionary. |
Remove(String) |
Removes the item with the specified prefix key from the XmlnsDictionary. |
Remove(Object)
Removes the item with the specified prefix key from the XmlnsDictionary.
public:
virtual void Remove(System::Object ^ prefix);
public void Remove (object prefix);
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
Public Sub Remove (prefix As Object)
Parameters
- prefix
- Object
The prefix key to remove.
Implements
Exceptions
The XmlnsDictionary is sealed.
Remarks
This implementation forwards to the type-safe method XmlnsDictionary.Remove(String).
Applies to
Remove(String)
Removes the item with the specified prefix key from the XmlnsDictionary.
public:
void Remove(System::String ^ prefix);
public void Remove (string prefix);
member this.Remove : string -> unit
Public Sub Remove (prefix As String)
Parameters
- prefix
- String
The prefix key to remove.
Exceptions
The XmlnsDictionary is sealed.