PolicyStatement.AttributeString 属性

定义

获取策略语句的特性的字符串表示形式。

public:
 property System::String ^ AttributeString { System::String ^ get(); };
public string AttributeString { get; }
member this.AttributeString : string
Public ReadOnly Property AttributeString As String

属性值

表示策略语句的特性的文本字符串。

示例

下面的代码示例演示如何使用 AttributeString 属性获取策略语句属性。 此代码示例是为 PolicyStatement 类提供的一个更大示例的一部分。

if ( policyStatement->AttributeString != nullptr )
{
   attributeString = policyStatement->AttributeString;
}
if (policyStatement.AttributeString != null)
{
    attributeString = policyStatement.AttributeString;
}
If (Not policyStatement.AttributeString Is Nothing) Then
    attributeString = policyStatement.AttributeString
End If

注解

使用此属性获取当前为 PolicyStatement设置的属性的文本字符串。

适用于