PolicyStatement.AttributeString プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポリシー ステートメントの属性の文字列形式を取得します。
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取得します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET