CommaDelimitedStringCollection.IsReadOnly 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出集合物件是否為唯讀。
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
屬性值
如果 CommaDelimitedStringCollection 中所指定的字串項目是唯讀,則為 true
,否則為 false
。
範例
下列程式代碼範例示範如何使用 IsReadOnly 屬性。 此程式代碼範例是類別概觀所提供較大範例的 CommaDelimitedStringCollection 一部分。
// Call IsReadyOnly.
Console.WriteLine("IsReadOnly: {0}",
myStrCollection.IsReadOnly);
' Call IsReadyOnly.
Console.WriteLine("IsReadOnly: {0}", _
myStrCollection.IsReadOnly)
備註
如果集合標示為唯讀,這個屬性會 true
傳回 。 這適用於在運行時間保護元素,而不是設計時間。 如需詳細資訊,請參閱 IsReadOnly 類別上的 System.Configuration.ConfigurationElement 方法。