EncryptionPropertyCollection.IsFixedSize 属性

定义

获取一个值,该值指示 EncryptionPropertyCollection 对象是否具有固定大小。Gets a value that indicates whether the EncryptionPropertyCollection object has a fixed size.

public:
 property bool IsFixedSize { bool get(); };
public bool IsFixedSize { get; }
member this.IsFixedSize : bool
Public ReadOnly Property IsFixedSize As Boolean

属性值

Boolean

如果 EncryptionPropertyCollection 对象具有固定大小,则为 true;否则为 falsetrue if the EncryptionPropertyCollection object has a fixed size; otherwise, false.

实现

注解

具有固定大小的集合不允许在创建集合后添加或删除元素,但允许修改现有元素。A collection with a fixed size does not allow the addition or removal of elements after the collection is created, but does allow the modification of existing elements.

固定大小的集合就是一个集合,其中包含阻止添加和移除元素的包装器。A collection with a fixed size is simply a collection with a wrapper that prevents adding and removing elements. 因此,如果对基础集合进行了更改,包括添加或删除元素,则固定大小的集合将反映这些更改。Therefore, if changes are made to the underlying collection, including the addition or removal of elements, the fixed-size collection reflects those changes.

适用于