ObjectItemCollection.GetItems<T> Method

Definition

Returns all the items of the specified type from this item collection.

public:
generic <typename T>
 where T : System::Data::Metadata::Edm::GlobalItem override System::Collections::ObjectModel::ReadOnlyCollection<T> ^ GetItems();
public override System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T> () where T : System.Data.Metadata.Edm.GlobalItem;
override this.GetItems : unit -> System.Collections.ObjectModel.ReadOnlyCollection<'T (requires 'T :> System.Data.Metadata.Edm.GlobalItem)> (requires 'T :> System.Data.Metadata.Edm.GlobalItem)
Public Overrides Function GetItems(Of T As GlobalItem) () As ReadOnlyCollection(Of T)

Type Parameters

T

The type returned by the method.

Returns

A collection of type ReadOnlyCollection<T> that contains all items of the specified type.

Applies to