ConfigurationCollectionAttribute.AddItemName 属性
定义
获取或设置 <add>
配置元素的名称。Gets or sets the name of the <add>
configuration element.
public:
property System::String ^ AddItemName { System::String ^ get(); void set(System::String ^ value); };
public string AddItemName { get; set; }
member this.AddItemName : string with get, set
Public Property AddItemName As String
属性值
替换配置项的标准名“add”的名称。The name that substitutes the standard name "add" for the configuration item.
示例
下面的示例演示如何使用 AddItemName 属性。The following example shows how to use the AddItemName property.
// 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
注解
AddItemName属性允许向配置元素分配不同的名称。The AddItemName property allows you to assign a different name to the configuration element. 例如,可以使用 addUrl
而不是 "添加"。For example, you could use addUrl
instead of "add".