ConfigurationLockCollection.AttributeList Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une liste des objets de configuration contenus dans la collection.
public:
property System::String ^ AttributeList { System::String ^ get(); };
public string AttributeList { get; }
member this.AttributeList : string
Public ReadOnly Property AttributeList As String
Valeur de propriété
Chaîne délimitée par des virgules qui répertorie les objets de configuration verrouillés dans la collection.
Exemples
L’exemple de code suivant montre comment utiliser la AttributeList propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la ConfigurationLockCollection classe .
// AttributeList method.
Console.WriteLine("AttributeList: {0}",
lockedAttribList.AttributeList);
' AttributeList method.
Console.WriteLine("AttributeList: {0}", _
lockedAttribList.AttributeList)