MultiplexedConnectionDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A function that can process a connection.
public delegate System.Threading.Tasks.Task MultiplexedConnectionDelegate(MultiplexedConnectionContext connection);
type MultiplexedConnectionDelegate = delegate of MultiplexedConnectionContext -> Task
Public Delegate Function MultiplexedConnectionDelegate(connection As MultiplexedConnectionContext) As Task
Parameters
- connection
- MultiplexedConnectionContext
A MultiplexedConnectionContext representing the connection.
Return Value
A Task that represents the connection lifetime. When the task completes, the connection will be closed.