コード例 #1
0
 public RpcReply(RpcMismatchInfo mismatchInfo)
     : base(memberSerializers)
 {
     this.status        = RpcReplyStatus.Denied;
     this.rejectedReply = new RpcRejectedReply(mismatchInfo);
 }
コード例 #2
0
 public RpcRejectedReply(RpcMismatchInfo mismatchInfo)
     : base(memberSerializers)
 {
     this.status       = RpcRejectStatus.RpcMismatch;
     this.mismatchInfo = mismatchInfo;
 }