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