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

Retrieves the value from the specified slot on the current thread.

[Visual Basic]
Public Shared Function GetData( _
   ByVal slot As LocalDataStoreSlot _
) As Object
[C#]
public static object GetData(
   LocalDataStoreSlot slot
);
[C++]
public: static Object* GetData(
   LocalDataStoreSlot* slot
);
[JScript]
public static function GetData(
   slot : LocalDataStoreSlot
) : Object;

Parameters

slot
The slot from which to get the value.

Return Value

The retrieved value.

See Also

Thread Class | Thread Members | System.Threading Namespace