ConfigurationPropertyAttribute.IsKey プロパティ

定義

これが、装飾された要素のプロパティに対する主要プロパティかどうかを示す値を取得または設定します。

public:
 property bool IsKey { bool get(); void set(bool value); };
public bool IsKey { get; set; }
member this.IsKey : bool with get, set
Public Property IsKey As Boolean

プロパティ値

プロパティが、コレクションの要素に対する主要プロパティの場合は true。それ以外の場合は false。 既定値は、false です。

IsKey プロパティを使用する方法を次の例に示します。

[ConfigurationProperty("name", DefaultValue = "Contoso",
    IsRequired = true, IsKey = true)]
public string Name
{
    get
    {
        return (string)this["name"];
    }
    set
    {
        this["name"] = value;
    }
}
<ConfigurationProperty("name", DefaultValue:="Contoso", IsRequired:=True, IsKey:=True)>
Public Property Name() As String
    Get
        Return CStr(Me("name"))
    End Get
    Set(ByVal value As String)
        Me("name") = value
    End Set
End Property

注釈

プロパティは、 IsKey 装飾するプロパティがコレクションである場合にのみ適用されます。 プロパティがコレクションでない場合、効果はありません。 複数の要素を として IsKeyマークできます。

適用対象