Context.UnregisterDynamicProperty(String, ContextBoundObject, Context) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注销实现 IDynamicProperty 接口的动态属性。
此 API 支持产品基础结构,不能在代码中直接使用。
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
参数
- name
- String
要注销的动态属性的名称。
为其注册 property
的对象/代理。
- ctx
- Context
为其注册 property
的上下文。
返回
如果对象已成功注销,则为 true
;否则为 false
。
例外
name
参数为 null
。
对象和上下文都已指定(obj
和 ctx
都不为 null
)。