共用方式為


ConfigurationElement.Attributes 屬性

定義

取得組態屬性集合,其中包含這個專案的屬性清單。

public:
 property Microsoft::Web::Administration::ConfigurationAttributeCollection ^ Attributes { Microsoft::Web::Administration::ConfigurationAttributeCollection ^ get(); };
public Microsoft.Web.Administration.ConfigurationAttributeCollection Attributes { get; }
member this.Attributes : Microsoft.Web.Administration.ConfigurationAttributeCollection
Public ReadOnly Property Attributes As ConfigurationAttributeCollection

屬性值

ConfigurationAttributeCollection物件,包含這個專案的屬性清單。

範例

下列範例會 Attributes 取得 屬性值,這是組態專案屬性的集合。 name如果屬性的值為 「TestDemo」,則會從元素集合中移除元素。 此程式碼範例是針對 類別提供的較大範例的 ConfigurationElement 一部分。

ConfigurationElementCollection elementCollection = 
    moduleProvidersSection.GetCollection();
// If there is a configuration element with the name of TestDemo(Modified), delete it.
ConfigurationElement elementtoremove = null;
foreach (ConfigurationElement moduleproviderelement in elementCollection)
{
    if(moduleproviderelement.Attributes["name"].Value.ToString() == "TestDemo(Modified)")
    {
        elementtoremove = moduleproviderelement;
    }
}
if (elementtoremove != null)
{
    elementCollection.Remove(elementtoremove);
}

備註

您可以使用傳 ConfigurationAttributeCollection 回的物件來修改屬性值。

適用於