ConfigurationProperty.IsKey Property

Definition

Gets a value indicating whether this ConfigurationProperty is the key for the containing ConfigurationElement object.

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

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

Property Value

true if this ConfigurationProperty object is the key for the containing element; otherwise, false. The default is false.

Examples

The following code example shows how to get the IsKey property for a specified property.

string isKey = _MaxIdleTime.IsKey.ToString();
Console.WriteLine("MaxIdleTime is key: {0}", isKey);
Dim isKey As String = _
_MaxIdleTime.IsKey.ToString()
Console.WriteLine( _
"MaxIdleTime is key: {0}", isKey)

Remarks

You can define a new ConfigurationProperty object to be the key for the containing element when implementing the ConfigurationElement element. If this flag is not used, the IsKey property will return false.

Applies to

See also