public WebSocketServerEventArgs(TWebSocketClient cli, WebSocketDataFrame dataFrame) : this(cli)
 {
     this.DataFrame = dataFrame;
 }
 public WebSocketServerEventArgs(TWebSocketClient cli, Exception innerException) : this(cli)
 {
     this.Exception = innerException;
 }
 public WebSocketServerEventArgs(TWebSocketClient cli)
 {
     this.Cli = cli;
 }