예제 #1
0
 /// <summary>
 /// Initialize WebSocket client
 /// </summary>
 /// <param name="context">SSL context</param>
 public WssClient(SslContext context) : base(context)
 {
     WebSocket = new WebSocket(this);
 }
예제 #2
0
 /// <summary>
 /// Initialize WebSocket client with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public WssClient(SslContext context, string address, int port) : base(context, address, port)
 {
     WebSocket = new WebSocket(this);
 }
예제 #3
0
 /// <summary>
 /// Initialize WebSocket client with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public WssClient(SslContext context, IPEndPoint endpoint) : base(context, endpoint)
 {
     WebSocket = new WebSocket(this);
 }
예제 #4
0
 /// <summary>
 /// Initialize WebSocket server with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public WssServer(SslContext context, IPAddress address, int port) : base(context, address, port)
 {
     WebSocket = new WebSocket(this);
 }
예제 #5
0
 /// <summary>
 /// Initialize WebSocket server
 /// </summary>
 /// <param name="context">SSL context</param>
 public WssServer(SslContext context) : base(context)
 {
     WebSocket = new WebSocket(this);
 }
예제 #6
0
 /// <summary>
 /// Initialize SSL client with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public SslClient(SslContext context, IPEndPoint endpoint)
 {
     Address = endpoint.Address.ToString(); Context = context; Endpoint = endpoint;
 }
예제 #7
0
 /// <summary>
 /// Initialize SSL server with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public SslServer(SslContext context, IPEndPoint endpoint)
 {
     Context = context; Endpoint = endpoint;
 }
예제 #8
0
 /// <summary>
 /// Initialize HTTPS client with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public HttpsClientEx(SslContext context, IPEndPoint endpoint) : base(context, endpoint)
 {
 }
예제 #9
0
 /// <summary>
 /// Initialize HTTPS client with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public HttpsClient(SslContext context, string address, int port) : base(context, address, port)
 {
     Request = new HttpRequest(); Response = new HttpResponse();
 }
예제 #10
0
 /// <summary>
 /// Initialize HTTPS server
 /// </summary>
 /// <param name="context">SSL context</param>
 public HttpsServer(SslContext context) : base(context)
 {
     Cache = new FileCache();
 }
예제 #11
0
 /// <summary>
 /// Initialize HTTPS client with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public HttpsClientEx(SslContext context, string address, int port) : base(context, address, port)
 {
 }
예제 #12
0
 /// <summary>
 /// Initialize HTTPS server with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public HttpsServer(SslContext context, IPEndPoint endpoint) : base(context, endpoint)
 {
     Cache = new FileCache();
 }
예제 #13
0
 /// <summary>
 /// Initialize HTTPS server with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public HttpsServer(SslContext context, string address, int port) : base(context, address, port)
 {
     Cache = new FileCache();
 }
예제 #14
0
 /// <summary>
 /// Initialize SSL server
 /// </summary>
 /// <param name="context">SSL context</param>
 public SslServer(SslContext context)
 {
     Context = context; Endpoint = new IPEndPoint(IPAddress.Any, 0);
 }
예제 #15
0
 /// <summary>
 /// Initialize SSL client with a given server IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public SslClient(SslContext context, IPAddress address, int port) : this(context, new IPEndPoint(address, port))
 {
 }
예제 #16
0
 /// <summary>
 /// Initialize HTTPS client with a given IP endpoint
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="endpoint">IP endpoint</param>
 public HttpsClient(SslContext context, IPEndPoint endpoint) : base(context, endpoint)
 {
     Request = new HttpRequest(); Response = new HttpResponse();
 }
예제 #17
0
 /// <summary>
 /// Initialize SSL client with a given server IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public SslClient(SslContext context, string address, int port) : this(context, new IPEndPoint(IPAddress.Parse(address), port))
 {
     Address = address;
 }
예제 #18
0
 /// <summary>
 /// Initialize HTTPS client
 /// </summary>
 /// <param name="context">SSL context</param>
 public HttpsClient(SslContext context) : base(context)
 {
     Request = new HttpRequest(); Response = new HttpResponse();
 }
예제 #19
0
 /// <summary>
 /// Initialize SSL client
 /// </summary>
 /// <param name="context">SSL context</param>
 public SslClient(SslContext context)
 {
     Address = IPAddress.Any.ToString(); Context = context; Endpoint = new IPEndPoint(IPAddress.Any, 0);
 }
예제 #20
0
 /// <summary>
 /// Initialize SSL server with a given IP address and port number
 /// </summary>
 /// <param name="context">SSL context</param>
 /// <param name="address">IP address</param>
 /// <param name="port">Port number</param>
 public SslServer(SslContext context, string address, int port) : this(context, new IPEndPoint(IPAddress.Parse(address), port))
 {
 }