ConfigurationLockCollection.AttributeList 属性

定义

获取集合中包含的配置对象的列表。

public:
 property System::String ^ AttributeList { System::String ^ get(); };
public string AttributeList { get; }
member this.AttributeList : string
Public ReadOnly Property AttributeList As String

属性值

一个以逗号分隔的字符串,它列出集合中的锁定配置对象。

示例

下面的代码示例演示如何使用 AttributeList 属性。 此代码示例是为 ConfigurationLockCollection 类提供的一个更大示例的一部分。

// AttributeList method.
Console.WriteLine("AttributeList: {0}",
 lockedAttribList.AttributeList);
' AttributeList method.
Console.WriteLine("AttributeList: {0}", _
 lockedAttribList.AttributeList)

适用于