ConfigurationProperty.IsRequired Property

Definition

Gets a value indicating whether this ConfigurationProperty is required.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Property Value

true if the ConfigurationProperty is required; otherwise, false. The default is false.

Examples

The following code example shows how to get the IsRequired property value for a specified configuration-property object.

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)

Applies to

See also