MetalamaAPI documentationAspect APIMetalama.​Framework.​CodeEnumerable­Kind
Open sandboxFocus

EnumerableKind Class

Kinds of iterators.

Inheritance
System.Object
EnumerableKind
Namespace: Metalama.Framework.Code
Assembly: Metalama.Framework.dll
Syntax
[CompileTime]
public sealed class EnumerableKind : Enum

Fields

Name Description
IAsyncEnumerable

A method returning System.Collections.Generic.IAsyncEnumerable.

IAsyncEnumerator

A method returning System.Collections.Generic.IAsyncEnumerator.

IEnumerable

A method returning a generic System.Collections.Generic.IEnumerable<>.

IEnumerator

A method returning a generic System.Collections.Generic.IEnumerator<>.

None

None. The method does not returns an enumerable or enumerator.

UntypedIEnumerable

A method returning a non-generic System.Collections.IEnumerable.

UntypedIEnumerator

A method returning a non-generic System.Collections.IEnumerator.

value__