PolicyStatement.Attributes 属性

定义

获取或设置策略语句的特性。

public:
 property System::Security::Policy::PolicyStatementAttribute Attributes { System::Security::Policy::PolicyStatementAttribute get(); void set(System::Security::Policy::PolicyStatementAttribute value); };
public System.Security.Policy.PolicyStatementAttribute Attributes { get; set; }
member this.Attributes : System.Security.Policy.PolicyStatementAttribute with get, set
Public Property Attributes As PolicyStatementAttribute

属性值

策略语句的特性。

示例

下面的代码示例演示如何使用 Attributes 属性设置 All 标志。 此代码示例是为 PolicyStatement 类提供的一个更大示例的一部分。

policyStatement->Attributes = PolicyStatementAttribute::All;
policyStatement.Attributes = PolicyStatementAttribute.All;
policyStatement.Attributes = PolicyStatementAttribute.All

适用于