Exemplo n.º 1
0
 public WebSocket(PureEngineIoTransportOptions opts) : base(opts)
 {
     Name            = NAME;
     _cookies        = opts.GetCookiesAsString();
     _myExtraHeaders = new List <Tuple <string, string> >();
     foreach (var header in opts.ExtraHeaders)
     {
         _myExtraHeaders.Add(new Tuple <string, string>(header.Key, header.Value));
     }
 }
Exemplo n.º 2
0
 public PollingXHR(PureEngineIoTransportOptions options) : base(options)
 {
 }
Exemplo n.º 3
0
 public Polling(PureEngineIoTransportOptions opts) : base(opts) => Name = NAME;