public override bool Equals(object o) { if (this == o) { return(true); } if (o == null || this.GetType() != o.GetType()) { return(false); } RaftMessages_Vote_Response response = ( RaftMessages_Vote_Response )o; return(TermConflict == response.TermConflict && VoteGrantedConflict == response.VoteGrantedConflict); }
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: //ORIGINAL LINE: public T handle(RaftMessages_Vote_Response response) throws E public override T Handle(RaftMessages_Vote_Response response) { return(default(T)); }