ConfigurationLockCollection.AttributeList 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取集合中包含的配置对象的列表。
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)