Beispiel #1
0
        public bool Equals(RpcRejectedReplyHeader other)
        {
            if (other == null)
            {
                return(false);
            }

            return(other.Status == Status &&
                   object.Equals(other.MismatchInfo, MismatchInfo) &&
                   other.AuthenticationStatus == AuthenticationStatus);
        }
Beispiel #2
0
 public RpcReplyHeader(XdrDataReader reader)
 {
     Status = (RpcReplyStatus)reader.ReadInt32();
     if (Status == RpcReplyStatus.Accepted)
     {
         AcceptReply = new RpcAcceptedReplyHeader(reader);
     }
     else
     {
         RejectedReply = new RpcRejectedReplyHeader(reader);
     }
 }