Bridge

AsyncVoidMethodBuilder..::..Start<(Of <(<'TStateMachine>)>)> Method

Begins running the builder with the associated state machine.

Namespace:  System.Runtime.CompilerServices
Assembly:  Bridge (in Bridge.dll)

Syntax


public void Start<TStateMachine>(
	ref TStateMachine stateMachine
)
where TStateMachine : IAsyncStateMachine
Public Sub Start(Of TStateMachine As IAsyncStateMachine) ( _
	ByRef stateMachine As TStateMachine _
)
public:
generic<typename TStateMachine>
where TStateMachine : IAsyncStateMachine
void Start(
	TStateMachine% stateMachine
)

Type Parameters

TStateMachine
The type of the state machine.

Parameters

stateMachine
Type: TStateMachine%
The state machine instance, passed by reference.

Exceptions


ExceptionCondition
System..::..ArgumentNullExceptionstateMachine is null.