GrainCallFilterDelegate 委托

定义

用于截获请求调用的委托。

public delegate System.Threading.Tasks.Task GrainCallFilterDelegate(IGrainCallContext context);
type GrainCallFilterDelegate = delegate of IGrainCallContext -> Task
Public Delegate Function GrainCallFilterDelegate(context As IGrainCallContext) As Task 

参数

context
IGrainCallContext

调用上下文。

返回值

在继续处理之前必须等待的一个 Task

适用于