コード例 #1
0
 public WebSocketServerEventArgs(TWebSocketClient cli, WebSocketDataFrame dataFrame) : this(cli)
 {
     this.DataFrame = dataFrame;
 }
コード例 #2
0
 public WebSocketServerEventArgs(TWebSocketClient cli, Exception innerException) : this(cli)
 {
     this.Exception = innerException;
 }
コード例 #3
0
 public WebSocketServerEventArgs(TWebSocketClient cli)
 {
     this.Cli = cli;
 }