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