This class represents a callback with single a context object of a specific type passed as argument.

C# | Visual Basic | Managed C++ |
public delegate void ContextCallback<C> ( C context )
Public Delegate Sub ContextCallback(Of C) ( _ context As C _ )
generic<typename C> public delegate void ContextCallback ( C context )

- C
- The type of the context object.

- context (C)
- The context object passed as argument.