KeyInfo.GetEnumerator メソッド

定義

KeyInfoClause オブジェクト内の KeyInfo オブジェクトの列挙子を返します。

オーバーロード

GetEnumerator()

KeyInfoClause オブジェクト内の KeyInfo オブジェクトの列挙子を返します。

GetEnumerator(Type)

KeyInfoClause オブジェクト内の、指定した型の KeyInfo オブジェクトの列挙子を返します。

GetEnumerator()

ソース:
KeyInfo.cs
ソース:
KeyInfo.cs
ソース:
KeyInfo.cs

KeyInfoClause オブジェクト内の KeyInfo オブジェクトの列挙子を返します。

public:
 virtual System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
override this.GetEnumerator : unit -> System.Collections.IEnumerator
Public Function GetEnumerator () As IEnumerator

戻り値

コレクションを反復処理するために使用できる KeyInfo のサブ要素の列挙子。

実装

注釈

同じコレクションから同時に取得された 2 つの列挙子は、必ずしも同じイテレーションを返す必要はありません。

最初に、列挙子はコレクションの最初の要素の前に配置する必要があり、使用する前に実装の呼び出し元によって拡張される必要があります。

適用対象

GetEnumerator(Type)

ソース:
KeyInfo.cs
ソース:
KeyInfo.cs
ソース:
KeyInfo.cs

KeyInfoClause オブジェクト内の、指定した型の KeyInfo オブジェクトの列挙子を返します。

public:
 System::Collections::IEnumerator ^ GetEnumerator(Type ^ requestedObjectType);
public System.Collections.IEnumerator GetEnumerator (Type requestedObjectType);
member this.GetEnumerator : Type -> System.Collections.IEnumerator
Public Function GetEnumerator (requestedObjectType As Type) As IEnumerator

パラメーター

requestedObjectType
Type

列挙するオブジェクトの型。

戻り値

コレクションを反復処理するために使用できる KeyInfo のサブ要素の列挙子。

注釈

同じコレクションから同時に取得された 2 つの列挙子は、必ずしも同じイテレーションを返す必要はありません。

最初に、列挙子はコレクションの最初の要素の前に配置する必要があり、使用する前に実装の呼び出し元によって拡張される必要があります。

適用対象