Context.UnregisterDynamicProperty(String, ContextBoundObject, Context) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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
).