Click or drag to resize
ChannelConnectAsync Method
Allows explicitly requesting channel to connect without starting an RPC. Returned task completes once state Ready was seen. If the deadline is reached, or channel enters the FatalFailure state, the task is cancelled. There is no need to call this explicitly unless your use case requires that. Starting an RPC on a new channel will request connection implicitly.

Namespace: Grpc.Core
Assembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntax
public Task ConnectAsync(
	Nullable<DateTime> deadline = null
)

Parameters

deadline (Optional)
Type: SystemNullableDateTime
The deadline. null indicates no deadline.

Return Value

Type: Task
See Also