IContextProperty.IsNewContextOK(Context) 方法

定义

返回一个指示上下文属性是否与新上下文兼容的布尔值。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 bool IsNewContextOK(System::Runtime::Remoting::Contexts::Context ^ newCtx);
public bool IsNewContextOK (System.Runtime.Remoting.Contexts.Context newCtx);
[System.Security.SecurityCritical]
public bool IsNewContextOK (System.Runtime.Remoting.Contexts.Context newCtx);
abstract member IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
[<System.Security.SecurityCritical>]
abstract member IsNewContextOK : System.Runtime.Remoting.Contexts.Context -> bool
Public Function IsNewContextOK (newCtx As Context) As Boolean

参数

newCtx
Context

已在其中创建 ContextProperty 的新上下文。

返回

Boolean

如果该上下文属性可以与给定的上下文中的其他上下文属性共存,则为 true;否则为 false

属性

注解

将所有上下文属性添加到新的上下文之后,这些属性都将被查询为在新上下文中是否正常。 上下文属性可以查看中的其他上下文属性 newCtx ,并确定它是否与这些其他上下文属性兼容。

适用于