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