Ejemplo n.º 1
0
 public PerChannelWebSocketServerSockNetChannelModule(string path, string hostname, bool combineContinuations = true, OnWebSocketProtocolDelegate protocolDelegate = null)
 {
     this.path                 = path;
     this.hostname             = hostname;
     this.combineContinuations = combineContinuations;
     this.protocolDelegate     = protocolDelegate;
 }
 /// <summary>
 /// Creates a new web socket server socknet channel module.
 /// </summary>
 /// <param name="path"></param>
 /// <param name="hostname"></param>
 /// <param name="combineContinuations"></param>
 public WebSocketServerSockNetChannelModule(string path, string hostname, bool combineContinuations = true, OnWebSocketProtocolDelegate protocolDelegate = null)
 {
     this.path = path;
     this.hostname = hostname;
     this.combineContinuations = combineContinuations;
     this.protocolDelegate = protocolDelegate;
 }