ConfigurationPropertyAttribute.IsKey Proprietà

Definizione

Ottiene o imposta un valore che indica se questa è una proprietà chiave per la proprietà di elemento decorata.

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

Valore della proprietà

true se la proprietà è una proprietà chiave per un elemento dell'insieme; in caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene illustrato come utilizzare la proprietà 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

Commenti

La IsKey proprietà si applica solo se la proprietà decorata è una raccolta. Non ha alcun effetto se la proprietà non è una raccolta. È possibile contrassegnare più elementi come IsKey.

Si applica a