IMetadataOrderedCollection<T> Interface

Represents a collection of metadata objects where the element ordering is preserved.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface IMetadataOrderedCollection(Of T As IMetadataObject) _
    Inherits IMetadataCollection(Of T), IEnumerable(Of T), IEnumerable
'Usage
Dim instance As IMetadataOrderedCollection(Of T)
public interface IMetadataOrderedCollection<T> : IMetadataCollection<T>, 
    IEnumerable<T>, IEnumerable
where T : IMetadataObject
generic<typename T>
where T : IMetadataObject
public interface class IMetadataOrderedCollection : IMetadataCollection<T>, 
    IEnumerable<T>, IEnumerable
type IMetadataOrderedCollection<'T when 'T : IMetadataObject> =  
    interface
        interface IMetadataCollection<'T>
        interface IEnumerable<'T>
        interface IEnumerable
    end
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the elements in the collection, constrained to IMetadataObject.

The IMetadataOrderedCollection<T> type exposes the following members.

Properties

  Name Description
Public property AsMetadataObjectCollection Gets an IMetadataCollection<T> object that contains this collection. (Inherited from IMetadataCollection<T>.)
Public property Count Gets the number of elements in the collection. (Inherited from IMetadataCollection<T>.)
Public property Item[String] Gets the element in the collection by name. (Inherited from IMetadataCollection<T>.)
Public property Item[Int32] Gets the element at the specified index.

Top

Methods

  Name Description
Public method Contains(String) Determines whether the collection contains an element that has the specified name. (Inherited from IMetadataCollection<T>.)
Public method FindAll(Predicate<T>) Retrieves all elements in the collection that match the conditions defined by the specified predicate. (Inherited from IMetadataCollection<T>.)
Public method FindAll(String) Retrieves all elements in the collection that have the specified name. (Inherited from IMetadataCollection<T>.)
Public method GetEnumerator() (Inherited from IEnumerable<T>.)
Public method GetEnumerator() (Inherited from IEnumerable.)

Top