Context.UnregisterDynamicProperty(String, ContextBoundObject, Context) Method

Definition

Unregisters a dynamic property implementing the IDynamicProperty interface.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static bool UnregisterDynamicProperty(System::String ^ name, ContextBoundObject ^ obj, System::Runtime::Remoting::Contexts::Context ^ ctx);
public static bool UnregisterDynamicProperty (string name, ContextBoundObject obj, System.Runtime.Remoting.Contexts.Context ctx);
static member UnregisterDynamicProperty : string * ContextBoundObject * System.Runtime.Remoting.Contexts.Context -> bool
Public Shared Function UnregisterDynamicProperty (name As String, obj As ContextBoundObject, ctx As Context) As Boolean

Parameters

name
String

The name of the dynamic property to unregister.

obj
ContextBoundObject

The object/proxy for which the property is registered.

ctx
Context

The context for which the property is registered.

Returns

true if the object was successfully unregistered; otherwise, false.

Exceptions

The name parameter is null.

Both an object as well as a context are specified (both obj and ctx are not null).

Applies to