|
|
|
|
@ -36,7 +36,7 @@ using System.Security.Principal;
|
|
|
|
|
namespace WebSocketSharp.Net.WebSockets
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides the properties used for accessing the information in a WebSocket connection request
|
|
|
|
|
/// Provides the properties used to access the information in a WebSocket connection request
|
|
|
|
|
/// received by the <see cref="TcpListener"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
@ -45,8 +45,8 @@ namespace WebSocketSharp.Net.WebSockets
|
|
|
|
|
{
|
|
|
|
|
#region Private Fields
|
|
|
|
|
|
|
|
|
|
private CookieCollection _cookies;
|
|
|
|
|
private TcpClient _client;
|
|
|
|
|
private CookieCollection _cookies;
|
|
|
|
|
private HandshakeRequest _request;
|
|
|
|
|
private bool _secure;
|
|
|
|
|
private WsStream _stream;
|
|
|
|
|
@ -239,8 +239,9 @@ namespace WebSocketSharp.Net.WebSockets
|
|
|
|
|
/// This property represents the subprotocols requested by the client.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
/// <value>
|
|
|
|
|
/// An IEnumerable<string> instance that provides an enumerator which supports the
|
|
|
|
|
/// iteration over the values of the Sec-WebSocket-Protocol header.
|
|
|
|
|
/// An <see cref="T:System.Collections.Generic.IEnumerable{string}"/> instance that provides
|
|
|
|
|
/// an enumerator which supports the iteration over the values of the Sec-WebSocket-Protocol
|
|
|
|
|
/// header.
|
|
|
|
|
/// </value>
|
|
|
|
|
public override IEnumerable<string> SecWebSocketProtocols {
|
|
|
|
|
get {
|
|
|
|
|
|