Partager via


PolicyStatement.AttributeString Propriété

Définition

Obtient une représentation sous forme de chaîne des attributs de l'instruction de stratégie.

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

Valeur de propriété

Chaîne de texte représentant les attributs de l'instruction de stratégie.

Exemples

L’exemple de code suivant montre comment utiliser la AttributeString propriété pour obtenir les attributs d’instruction de stratégie. Cet exemple de code fait partie d’un exemple plus grand fourni pour la PolicyStatement classe .

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

Remarques

Utilisez cette propriété pour obtenir une chaîne de texte des attributs actuellement définis pour le PolicyStatement.

S’applique à