PersonalizationStateInfoCollection Class
Provides a collection of SharedPersonalizationStateInfo and UserPersonalizationStateInfo objects.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | PersonalizationStateInfoCollection() | Initializes a new instance of the PersonalizationStateInfoCollection class. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of items in a collection. |
![]() | IsSynchronized | Gets a value indicating whether access to the PersonalizationStateInfoCollection collection is synchronized (thread safe). |
![]() | Item[Int32] | Gets a PersonalizationStateInfo instance located at the specified ordinal index in the collection. |
![]() | Item[String^, String^] | Gets an element from the collection based on the specified parameters. |
![]() | SyncRoot | Gets an object that can be used to synchronize access to the PersonalizationStateInfoCollection instance. |
| Name | Description | |
|---|---|---|
![]() | Add(PersonalizationStateInfo^) | Adds a PersonalizationStateInfo-derived instance to the end of the collection. |
![]() | Clear() | Clears the collection of all items. |
![]() | CopyTo(array<PersonalizationStateInfo^>^, Int32) | Copies the elements of the PersonalizationStateInfoCollection collection into a PersonalizationStateInfo array, starting at the specified position. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetEnumerator() | Returns a standard enumerator capable of iterating over the collection. This method cannot be inherited. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | Remove(String^, String^) | Removes a PersonalizationStateInfo-derived object from the collection. |
![]() | SetReadOnly() | Marks the collection as read-only. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection::CopyTo(Array^, Int32) | Implements the base CopyTo method. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
The PersonalizationStateInfoCollection class provides a collection-based wrapper over a set of SharedPersonalizationStateInfo and UserPersonalizationStateInfo instances. These instances are retrieved by iterating sequentially over the collection, by ordinal index or by key value.
Instances are indexed on a combination of path and user name. This is necessary because SharedPersonalizationStateInfo instances representing shared data are indexed according to Path object, whereas UserPersonalizationStateInfo instances are indexed according to both a Path object and a Username object.
The information objects are maintained in the collection in the order in which they were received from the provider. The collection does not attempt to change the order of the instances or maintain a specific sort order within the collection.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



