PostSharpAPI ReferencePost­Sharp.​ReflectionState­Machine­Kind
Open sandboxFocus

StateMachineKind Class

Enumeration of kinds of state machines.

Inheritance
StateMachineKind
Namespace: PostSharp.Reflection
Assembly: PostSharp.dll
Syntax
public sealed class StateMachineKind : Enum

Fields

Name Description
Async

Async method.

AsyncIterator

Async method that returns IAsyncEnumerable<T>. New in C# 8.0.

Iterator

Iterator method.

None

The method is not implemented by a state machine.

value__