コード例 #1
0
 public static RpcResponse Result(RequestId id, object result) => new RpcResponse(id, result, null);
コード例 #2
0
 RpcResponse(RequestId id, object result, Exception exception)
 {
     this.Id        = id;
     this.result    = result;
     this.Exception = exception;
 }