ConfigurationCollectionAttribute.ClearItemsName 属性     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 <clear> 配置元素的名称。
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
	属性值
替换配置项的标准名“clear”的名称。
示例
以下示例演示如何使用 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
	注解
属性 ClearItemsName 允许你为配置元素分配不同的名称 <clear> 。 例如,可以使用 clearUrls 而不是“clear”。