예제 #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (ServiceId != null ? ServiceId.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (MethodId != null ? MethodId.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ ServiceAlias.GetHashCode();
         hashCode = (hashCode * 397) ^ (ConsumerApplicationId != null ? ConsumerApplicationId.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ ConsumerConnectionId.GetHashCode();
         hashCode = (hashCode * 397) ^ ConsumerApplicationInstanceId.GetHashCode();
         return(hashCode);
     }
 }
예제 #2
0
 private bool Equals(InvocationStartRequested other)
 {
     return(string.Equals(ServiceId, other.ServiceId) && string.Equals(MethodId, other.MethodId) && ServiceAlias.Equals(other.ServiceAlias) && string.Equals(ConsumerApplicationId, other.ConsumerApplicationId) && ConsumerConnectionId.Equals(other.ConsumerConnectionId) && ConsumerApplicationInstanceId.Equals(other.ConsumerApplicationInstanceId));
 }