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!

StringTable.Remove

Removes a string from the StringTable.

[Visual Basic]
Overridable Public Sub Remove( _
   ByVal key As String _
)
[C#]
public virtual void Remove(
   string key
);
[C++]
public: virtual void Remove(
   String* key
);
[JScript]
public function Remove(
   key : String
);

Parameters

key
The String to remove from the StringTable.

Return Value

None.

Exceptions

Exception Type Condition
ArgumentNullException key is a null reference (in Visual Basic Nothing).

Remarks

This method can be overridden by a derived class.

See Also

StringTable Class | StringTable Members | System.Collections Namespace | String