Пример #1
0
        public void OnConnectionClosed(WebSocketConnectionEventArgs e)
        {
            var handler = ConnectionClosed;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Пример #2
0
 public void OnConnectionClosed(WebSocketConnectionEventArgs e)
 {
     var handler = ConnectionClosed;
     if (handler != null)
         handler(this, e);
 }