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!

Context.UnregisterDynamicProperty

Unregister dynamic property. See RegisterDynamicProperty.

[Visual Basic]
Public Shared Function UnregisterDynamicProperty( _
   ByVal name As String, _
   ByVal obj As MarshalByRefObject, _
   ByVal ctx As Context _
) As Boolean
[C#]
public static bool UnregisterDynamicProperty(
   string name,
   MarshalByRefObject obj,
   Context ctx
);
[C++]
public: static bool UnregisterDynamicProperty(
   String* name,
   MarshalByRefObject* obj,
   Context* ctx
);
[JScript]
public static function UnregisterDynamicProperty(
   name : String,
   obj : MarshalByRefObject,
   ctx : Context
) : Boolean;

Parameters

name
[To be supplied.]
obj
[To be supplied.]
ctx

Return Value

Returns true if the object was successfully unregistered

Exceptions

Exception Type Condition
ArgumentNullException is thrown if the name is null
ArgumentException is thrown if both an object as well as a context is specified

See Also

Context Class | Context Members | System.Runtime.Remoting Namespace