Beispiel #1
0
        public Socket(string UrlNode, Quobject.SocketIoClientDotNet.Client.IO.Options options = null)
        {
            if (options == null)
            {
                options = new Quobject.SocketIoClientDotNet.Client.IO.Options()
                {
                    IgnoreServerCertificateValidation = true,
                    AutoConnect = true,
                    ForceNew    = true
                };
            }

            _socket = Quobject.SocketIoClientDotNet.Client.IO.Socket(UrlNode, options);
        }
Beispiel #2
0
 public Socket(Quobject.SocketIoClientDotNet.Client.Socket socket)
 {
     sock = socket;
 }
Beispiel #3
0
 public Socket(Quobject.SocketIoClientDotNet.Client.Socket socket)
 {
     this._socket = socket;
 }