AsyncVoidMethodBuilderStartTStateMachine Method |
This API is preliminary and subject to change.
Initiates the builder's execution with the associated state machine.
Namespace: System.Runtime.CompilerServicesAssembly: Rackspace.Threading (in Rackspace.Threading.dll) Version: 2.1.0-beta1
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
)
member Start :
stateMachine : 'TStateMachine byref -> unit when 'TStateMachine : IAsyncStateMachine
Parameters
- stateMachine
- Type: TStateMachine
The state machine instance, passed by reference.
Type Parameters
- TStateMachine
- Specifies the type of the state machine.
Exceptions Version Information
.NET Framework
Supported in: 3.5
Threading Library
Supported in: 2.1
See Also