ConfigurationCollectionAttribute.RemoveItemName Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yapılandırma öğesinin adını <remove>
alır veya ayarlar.
public:
property System::String ^ RemoveItemName { System::String ^ get(); void set(System::String ^ value); };
public string RemoveItemName { get; set; }
member this.RemoveItemName : string with get, set
Public Property RemoveItemName As String
Özellik Değeri
Yapılandırma öğesi için standart adın yerine "remove" geçen ad.
Örnekler
Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir RemoveItemName .
// 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
Açıklamalar
özelliği, RemoveItemName yapılandırma öğesine farklı bir ad <remove>
atamanızı sağlar. Örneğin, "remove" yerine kullanabilirsiniz removeUrl
.
Şunlara uygulanır
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.