ConfigurationCollectionAttribute.ClearItemsName Eigenschaft

Definition

Ruft den Namen des <clear>-Konfigurationselements ab oder legt diesen fest.

public:
 property System::String ^ ClearItemsName { System::String ^ get(); void set(System::String ^ value); };
public string ClearItemsName { get; set; }
member this.ClearItemsName : string with get, set
Public Property ClearItemsName As String

Eigenschaftswert

Der Name, der den Standardnamen "clear" für das Konfigurationselement ersetzt.

Beispiele

Im folgenden Beispiel wird gezeigt, wie sie verwendet wird ClearItemsName.

// Declare the Urls collection property using the
// ConfigurationCollectionAttribute.
// This allows to build a nested section that contains
// a collection of elements.
[ConfigurationProperty("urls", IsDefaultCollection = false)]
[ConfigurationCollection(typeof(UrlsCollection),
    AddItemName = "add",
    ClearItemsName = "clear",
    RemoveItemName = "remove")]
public UrlsCollection Urls
{
    get
    {
        UrlsCollection urlsCollection =
            (UrlsCollection)base["urls"];
        return urlsCollection;
    }
}
' Declare the Urls collection property using the
' ConfigurationCollectionAttribute.
' This allows to build a nested section that contains
' a collection of elements.
<ConfigurationProperty("urls", IsDefaultCollection:=False),
    System.Configuration.ConfigurationCollection(GetType(UrlsCollection),
    AddItemName:="add", ClearItemsName:="clear", RemoveItemName:="remove")> _
Public ReadOnly Property Urls() As UrlsCollection
    Get
        Dim urlsCollection As UrlsCollection = CType(MyBase.Item("urls"), UrlsCollection)
        Return urlsCollection
    End Get
End Property

Hinweise

Mit ClearItemsName der -Eigenschaft können Sie dem <clear> Konfigurationselement einen anderen Namen zuweisen. Sie können beispielsweise anstelle von "clear" verwenden clearUrls .

Gilt für: