ConfigurationProperty.IsRequired Proprietà

Definizione

Ottiene un valore che indica se questa classe ConfigurationProperty è obbligatoria.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 property bool IsRequired { bool get(); };
public bool IsRequired { get; }
member this.IsRequired : bool
Public ReadOnly Property IsRequired As Boolean

Valore della proprietà

true se l'oggetto ConfigurationProperty è obbligatorio; in caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere il valore della IsRequired proprietà per un oggetto configuration-property specificato.

string isRequired = _MaxIdleTime.IsRequired.ToString();
Console.WriteLine("MaxIdleTime is required: {0}", isRequired);
Dim isRequired As String = _MaxIdleTime.IsRequired.ToString()
Console.WriteLine("MaxIdleTime is required: {0}", isRequired)

Si applica a

Vedi anche