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

Returns a synchronized (thread-safe) wrapper for the StringTable.

[Visual Basic]
Public Shared Function Synchronized( _
   ByVal st As StringTable _
) As StringTable
[C#]
public static StringTable Synchronized(
   StringTable st
);
[C++]
public: static StringTable* Synchronized(
   StringTable* st
);
[JScript]
public static function Synchronized(
   st : StringTable
) : StringTable;

Parameters

st
The StringTable to synchronize.

Return Value

A StringTable wrapper that is synchronized (thread-safe).

Exceptions

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

Remarks

To guarantee the thread-safety of the StringTable, all operations must be done through this wrapper only.

See Also

StringTable Class | StringTable Members | System.Collections Namespace | SyncRoot | IsSynchronized