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 的对象修改属性值。

适用于