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