IAFNamedCollection(T) Methods
- Last UpdatedNov 18, 2025
- 3 minute read
- PI System
- AF SDK 2024 R2
- Developer
The IAFNamedCollectionT generic type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| Add | Adds an item to the ICollectionT. (Inherited from ICollectionT.) | |
| Clear | Removes all items from the ICollectionT. (Inherited from ICollectionT.) | |
| Contains(T) | Determines whether the ICollectionT contains a specific value. (Inherited from ICollectionT.) | |
| Contains(Guid) |
This method determines whether the collection contains a specific item referenced by id.
| |
| Contains(String) |
This method determines whether the collection contains a specific item referenced by name.
| |
| CopyTo | Copies the elements of the ICollectionT to an Array, starting at a particular Array index. (Inherited from ICollectionT.) | |
| GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerableT.) | |
| IndexOf | Determines the index of a specific item in the IListT. (Inherited from IListT.) | |
| Insert | Inserts an item to the IListT at the specified index. (Inherited from IListT.) | |
| Remove(T) | Removes the first occurrence of a specific object from the ICollectionT. (Inherited from ICollectionT.) | |
| Remove(Guid) |
Removes the item with the specified id from the collection.
| |
| Remove(String) |
The Remove method removes the item from the collection by name.
| |
| RemoveAt | Removes the IListT item at the specified index. (Inherited from IListT.) |
Extension Methods
| Name | Description | |
|---|---|---|
| ChunkedByT |
This extension method breaks up search results into chunks to make it easier to
page through and process IEnumerableT collections in chunks.
(Defined by AFSDKExtension.) |