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!

IDictionary.Remove

When implemented by a class, removes the entry with the specified key from the IDictionary.

[Visual Basic]
Sub Remove( _
   ByVal key As Object _
)
[C#]
void Remove(
   object key
);
[C++]
void Remove(
   Object* key
) = 0;
[JScript]
function Remove(
   key : Object
);

Parameters

key
The key of the entry to remove.

Exceptions

Exception Type Condition
ArgumentException key is null.
NotSupportedException The IDictionary is read-only.

See Also

IDictionary Interface | IDictionary Members | System.Collections Namespace