Metalama//API Documentation/Aspect API/Metalama.​Framework.​Code/Enumerable­Kind
Open sandboxFocus

Class EnumerableKind

Kinds of iterators.

Inheritance
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 IEnumerable<T>.

IEnumerator

A method returning a generic IEnumerator<T>.

None

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

UntypedIEnumerable

A method returning a non-generic IEnumerable.

UntypedIEnumerator

A method returning a non-generic IEnumerator.

value__