PropertyInformation.IsRequired 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 valeur spécifiant si l'attribut de configuration est requis.
public:
property bool IsRequired { bool get(); };
public bool IsRequired { get; }
member this.IsRequired : bool
Public ReadOnly Property IsRequired As Boolean
Valeur de propriété
true
si l'objet PropertyInformation est requis ; sinon false
.
Exemples
L’exemple de code suivant montre comment utiliser la IsRequired propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la PropertyInformation classe .
// Display the IsRequired property.
Console.WriteLine("IsRequired: {0}", propertyItem.IsRequired);
' Display the IsRequired property.
Console.WriteLine("IsRequired: {0}", propertyItem.IsRequired)