ClientInvokeCallback 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.
The delegate called before every request to a grain.
public delegate void ClientInvokeCallback(InvokeMethodRequest request, IGrain grain);
type ClientInvokeCallback = delegate of InvokeMethodRequest * IGrain -> unit
Public Delegate Sub ClientInvokeCallback(request As InvokeMethodRequest, grain As IGrain)
Parameters
- request
- InvokeMethodRequest
The request.
- grain
- IGrain
The grain.