ContextAttribute.IsNewContextOK(Context) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个指示上下文属性是否与新上下文兼容的布尔值。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
virtual bool IsNewContextOK(System::Runtime::Remoting::Contexts::Context ^ newCtx);
public virtual bool IsNewContextOK (System.Runtime.Remoting.Contexts.Context newCtx);
[System.Security.SecurityCritical]
public virtual bool IsNewContextOK (System.Runtime.Remoting.Contexts.Context newCtx);
abstract member IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
override this.IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
[<System.Security.SecurityCritical>]
abstract member IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
override this.IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
Public Overridable Function IsNewContextOK (newCtx As Context) As Boolean
参数
- newCtx
- Context
已在其中创建属性的新上下文。
返回
如果上下文属性与新上下文兼容,则为 true
;否则为 false
。
实现
- 属性
注解
将所有上下文属性添加到新上下文后,将查询它们是否在新上下文中正常。 上下文属性可以查看新上下文的 属性中的其他 ContextProperties 上下文属性,并确定它是否与这些其他上下文属性兼容。
注意
默认情况下, IsNewContextOK 方法返回 true
。