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!

Thread.GetNamedDataSlot

Looks up a named data slot.

[Visual Basic]
Public Shared Function GetNamedDataSlot( _
   ByVal name As String _
) As LocalDataStoreSlot
[C#]
public static LocalDataStoreSlot GetNamedDataSlot(
   string name
);
[C++]
public: static LocalDataStoreSlot* GetNamedDataSlot(
   String* name
);
[JScript]
public static function GetNamedDataSlot(
   name : String
) : LocalDataStoreSlot;

Parameters

name
[To be supplied.]

Remarks

If the name has not been used, a new slot is allocated. Named data slots are "public" and can be manipulated by anyone.

See Also

Thread Class | Thread Members | System.Threading Namespace