示例#1
0
 public ExceptionContext(RpcRequest request, IServiceProvider serviceProvider, Exception exception)
 {
     this.Request         = request;
     this.ServiceProvider = serviceProvider;
     this.Exception       = exception;
 }
示例#2
0
 internal RpcInvokeContext(IServiceProvider serviceProvider, RpcRequest request, RpcPath?path)
 {
     this.ServiceProvider = serviceProvider;
     this.Request         = request;
     this.Path            = path;
 }