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)

適用於