GrainCallFilterDelegate 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 delegate used to intercept invocation of a request.
public delegate System.Threading.Tasks.Task GrainCallFilterDelegate(IGrainCallContext context);
type GrainCallFilterDelegate = delegate of IGrainCallContext -> Task
Public Delegate Function GrainCallFilterDelegate(context As IGrainCallContext) As Task
Parameters
- context
- IGrainCallContext
The invocation context.
Return Value
A Task which must be awaited before processing continues.