Wraps a client connecting over websockets
Inheritance: IStompClient
Ejemplo n.º 1
0
 public bool Equals(StompWebsocketClient other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     return(ReferenceEquals(this, other) || other.SessionId.Equals(SessionId));
 }
Ejemplo n.º 2
0
 public bool Equals(StompWebsocketClient other)
 {
     if (ReferenceEquals(null, other)) return false;
     return ReferenceEquals(this, other) || other.SessionId.Equals(SessionId);
 }