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