Click or drag to resize

InProcessClientStartAsync Method

Requests the start of the client's background message processing thread and provides a way for the caller to await the client reaching the started state.

Namespace: Orthogonal.MixedCommsLib
Assembly: Orthogonal.MixedCommsLib (in Orthogonal.MixedCommsLib.dll) Version: 2.0.3
Syntax
C#
public Task<bool> StartAsync(
	string txHandle,
	string rxHandle
)

Parameters

txHandle  String
The handle of the InProcessServer's transmit pipe.
rxHandle  String
The handle of the InProcessServer's receive pipe.

Return Value

TaskBoolean
A Task object that callers can use to await the client reaching the started state.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if the client is already started.
See Also