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

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

[Visual Basic]
Public Sub SetData( _
   ByVal name As String, _
   ByVal data As Object _
)
[C#]
public void SetData(
   string name,
   object data
);
[C++]
public: void SetData(
   String* name,
   Object* data
);
[JScript]
public function SetData(
   name : String,
   data : Object
);

Parameters

name
The name of an application domain property.
data
The value of the application domain property.

See Also

AppDomain Class | AppDomain Members | System Namespace