ConfigurationProperty.IsRequired 屬性

定義

取得值,指出是否需要這個 ConfigurationProperty

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

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

屬性值

如果需要 ConfigurationProperty,則為 true,否則為 false。 預設為 false

範例

下列程式代碼範例示範如何取得 IsRequired 指定之 configuration-property 對象的屬性值。

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)

適用於

另請參閱