ConnectionDelegate Delegate

Definition

A function that can process a connection.

public delegate System::Threading::Tasks::Task ^ ConnectionDelegate(ConnectionContext ^ connection);
public delegate System.Threading.Tasks.Task ConnectionDelegate(ConnectionContext connection);
type ConnectionDelegate = delegate of ConnectionContext -> Task
Public Delegate Function ConnectionDelegate(connection As ConnectionContext) As Task 

Parameters

connection
ConnectionContext

A ConnectionContext representing the connection.

Return Value

A Task that represents the connection lifetime. When the task completes, the connection will be closed.

Applies to