OrderedCollectionBase<T> Class
Represents a metadata object collection that preserves item ordering.
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Microsoft.SqlServer.Management.SqlParser.MetadataProvider::OrderedCollectionBase<T>
Microsoft.SqlServer.Management.SqlParser.MetadataProvider::OrderedCollection<T>
generic<typename T> where T : ref class, IMetadataObject [DefaultMemberAttribute("Item")] public ref class OrderedCollectionBase abstract : IMutableMetadataOrderedCollection<T>, IMetadataOrderedCollection<T>, IMutableMetadataCollection<T>, IMetadataCollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
- T
The type of the elements in the collection.
| Name | Description | |
|---|---|---|
![]() | OrderedCollectionBase<T>(Int32, CollationInfo^) | Initializes a new instance of the OrderedCollectionBase<T> class that uses the specified capacity and CollationInfo object. |
| Name | Description | |
|---|---|---|
![]() | AsMetadataObjectCollection | Gets an IMetadataCollection<T> object that contains this collection. |
![]() | Count | Gets the number of elements in the collection. |
![]() | Item[Int32] | Gets the element at the specified index. |
![]() | Item[String^] | Gets or sets the element that has the specified name. |
| Name | Description | |
|---|---|---|
![]() | Add(T) | Adds an object to the collection using its name as the key. |
![]() | AddRange(IEnumerable<T>^) | Adds the elements of the specified collection to this collection. |
![]() | Clear() | Removes all elements from the collection. |
![]() | Clone() | Creates an IMutableMetadataCollection<T> instance that is a copy of this object, except for the elements. |
![]() | Clone(Boolean) | Creates an IMutableMetadataCollection<T> instance that is a copy of this object and, if specified, also copies the elements. |
![]() | Contains(T) | Determines whether the specified element is in the collection. |
![]() | Contains(String^) | Determines whether the specified element is in the collection. |
![]() | Equals(Object^) | (Inherited from Object.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | FindAll(Predicate<T>^) | Finds all elements in the collection that match the conditions that are defined by the specified predicate. |
![]() | FindAll(String^) | Finds all elements in the collection that have the specified name. |
![]() | GetEnumerator() | Returns an enumerator that iterates through the collection. |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | Remove(T) | Removes the specified element from the collection. |
![]() | Remove(String^) | Removes the element that has the specified name from the collection. |
![]() | ToString() | (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerable::GetEnumerator() | Returns an enumerator that can iterate through the collection. |
This collection can be used when the order of the items must be preserved (for example, parameter collections).
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




