EncryptionPropertyCollection.IsReadOnly 属性
定义
获取一个值,该值指示 EncryptionPropertyCollection 对象是否为只读。Gets a value that indicates whether the EncryptionPropertyCollection object is read-only.
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
属性值
如果 EncryptionPropertyCollection 对象为只读,则为 true;否则为 false。true if the EncryptionPropertyCollection object is read-only; otherwise, false.
实现
注解
在创建只读集合后,该集合不允许添加、移除或修改元素。A collection that is read-only does not allow the addition, removal, or modification of elements after the collection is created.
只读集合就是一个集合,其中包含阻止修改集合的包装器;因此,如果对基础集合进行了更改,只读集合将反映这些更改。A collection that is read-only is simply a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.