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.Add

Adds a string to the StringTable.

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

Parameters

key
The String to add to 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.

If key is already in the StringTable, the default implementation replaces the existing string.

See Also

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