public ClientMessageDescription(ClientMessagePath path)
 {
     type = path.Message;
     query = path.InputType == null ? "N/A" : path.InputType.FullName;
     resource = path.ResourceType.FullName;
     chain = path.Chain.GetHashCode();
 }
Пример #2
0
 protected bool Equals(ClientMessagePath other)
 {
     return string.Equals(Message, other.Message) && Equals(InputType, other.InputType) && Equals(ResourceType, other.ResourceType);
 }
Пример #3
0
 protected bool Equals(ClientMessagePath other)
 {
     return(string.Equals(Message, other.Message) && Equals(InputType, other.InputType) && Equals(ResourceType, other.ResourceType));
 }