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!

AppDomain.GetData

Gets the value stored in the current application domain for the specified data name.

[Visual Basic]
Public Function GetData( _
   ByVal name As String _
) As Object
[C#]
public object GetData(
   string name
);
[C++]
public: Object* GetData(
   String* name
);
[JScript]
public function GetData(
   name : String
) : Object;

Parameters

name
The name of an application domain property.

Return Value

The value of the specified application domain property.

See Also

AppDomain Class | AppDomain Members | System Namespace