+
Closes the connection and releases all associated resources after sends a Close control frame.
- A that contains a status code indicating a reason for closure.
+ A that contains a status code indicating a reason for closure.
A that contains a reason for closure.
@@ -1396,5 +1195,134 @@
Stops the WebSocket service host.
+
+
+ Contains the values of the status codes for the WebSocket connection closure.
+
+
+
+ The CloseStatusCode enumeration contains the values of the status codes for the WebSocket connection closure
+ defined in RFC 6455 for the WebSocket protocol.
+
+
+ "Reserved value" must not be set as a status code in a close control frame by an endpoint.
+ It is designated for use in applications expecting a status code to indicate that connection
+ was closed due to a system grounds.
+
+
+
+
+
+ Equivalent to close status 1000. Indicates a normal closure.
+
+
+
+
+ Equivalent to close status 1001. Indicates that an endpoint is "going away".
+
+
+
+
+ Equivalent to close status 1002. Indicates that an endpoint is terminating the connection
+ due to a protocol error.
+
+
+
+
+ Equivalent to close status 1003. Indicates that an endpoint is terminating the connection
+ because it has received a type of data it cannot accept.
+
+
+
+
+ Equivalent to close status 1004. Still undefined. Reserved value.
+
+
+
+
+ Equivalent to close status 1005. Indicates that no status code was actually present. Reserved value.
+
+
+
+
+ Equivalent to close status 1006. Indicates that the connection was closed abnormally. Reserved value.
+
+
+
+
+ Equivalent to close status 1007. Indicates that an endpoint is terminating the connection
+ because it has received data within a message that was not consistent with the type of the message.
+
+
+
+
+ Equivalent to close status 1008. Indicates that an endpoint is terminating the connection
+ because it has received a message that violates its policy.
+
+
+
+
+ Equivalent to close status 1009. Indicates that an endpoint is terminating the connection
+ because it has received a message that is too big for it to process.
+
+
+
+
+ Equivalent to close status 1010. Indicates that an endpoint (client) is terminating the connection
+ because it has expected the server to negotiate one or more extension, but the server didn't return
+ them in the response message of the WebSocket handshake.
+
+
+
+
+ Equivalent to close status 1011. Indicates that a server is terminating the connection because it encountered
+ an unexpected condition that prevented it from fulfilling the request.
+
+
+
+
+ Equivalent to close status 1015. Indicates that the connection was closed due to a failure to perform
+ a TLS handshake. Reserved value.
+
+
+
+
+ Contains the values of the opcodes that denotes the frame type of the WebSocket frame.
+
+
+ The Opcode enumeration contains the values of the opcodes defined in
+ RFC 6455 for the WebSocket protocol.
+
+
+
+
+ Equivalent to numeric value 0. Indicates a continuation frame.
+
+
+
+
+ Equivalent to numeric value 1. Indicates a text frame.
+
+
+
+
+ Equivalent to numeric value 2. Indicates a binary frame.
+
+
+
+
+ Equivalent to numeric value 8. Indicates a connection close frame.
+
+
+
+
+ Equivalent to numeric value 9. Indicates a ping frame.
+
+
+
+
+ Equivalent to numeric value 10. Indicates a pong frame.
+
+
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/Fin.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/Fin.html
deleted file mode 100644
index 488fbec9..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/Fin.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
- WebSocketSharp.Frame.Fin
-
-
-
-
-
-
-
- Fin Enum
-
- Contains the values of the FIN bit in the WebSocket data frame.
-
-
-
Syntax
-
public enum Fin
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/Mask.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/Mask.html
deleted file mode 100644
index 1a7d8106..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/Mask.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
- WebSocketSharp.Frame.Mask
-
-
-
-
-
-
-
- Mask Enum
-
- Contains the values of the MASK bit in the WebSocket data frame.
-
-
-
Syntax
-
public enum Mask
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/PayloadData.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/PayloadData.html
deleted file mode 100644
index ca90264d..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/PayloadData.html
+++ /dev/null
@@ -1,859 +0,0 @@
-
-
- WebSocketSharp.Frame.PayloadData
-
-
-
-
-
-
-
- PayloadData Class
-
- Documentation for this section has not yet been entered.
-
-
-
-
-
Member Details
-
-
PayloadData Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
PayloadData (
byte[] appData)
- Parameters
-
-
- -
- appData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadData Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
PayloadData (
string appData)
- Parameters
-
-
- -
- appData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadData Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
PayloadData (
byte[] appData,
bool masked)
- Parameters
-
-
- -
- appData
-
- -
- Documentation for this section has not yet been entered.
-
- -
- masked
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadData Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
PayloadData (
byte[] extData,
byte[] appData)
- Parameters
-
-
- -
- extData
-
- -
- Documentation for this section has not yet been entered.
-
- -
- appData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadData Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
PayloadData (
byte[] extData,
byte[] appData,
bool masked)
- Parameters
-
-
- -
- extData
-
- -
- Documentation for this section has not yet been entered.
-
- -
- appData
-
- -
- Documentation for this section has not yet been entered.
-
- -
- masked
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ApplicationData Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
byte[]
ApplicationData { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ExtensionData Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
byte[]
ExtensionData { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
GetEnumerator Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
IsMasked Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
bool IsMasked { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Length Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
ulong Length { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Mask Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- maskingKey
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
MaxLength Field
-
-
- Documentation for this section has not yet been entered.
-
-
- Value: 9223372036854775807
- Syntax
- public const
ulong MaxLength
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
System.Collections.IEnumerable.GetEnumerator Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
-
IEnumerator System.Collections.IEnumerable.GetEnumerator ()
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ToBytes Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ToString Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public override
string ToString ()
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/Rsv.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/Rsv.html
deleted file mode 100644
index 5320f2f3..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/Rsv.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
- WebSocketSharp.Frame.Rsv
-
-
-
-
-
-
-
- Rsv Enum
-
- Contains the values of the reserved bit in the WebSocket data frame.
-
-
-
Syntax
-
public enum Rsv
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/WsFrame.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/WsFrame.html
deleted file mode 100644
index 027fd954..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/WsFrame.html
+++ /dev/null
@@ -1,1255 +0,0 @@
-
-
- WebSocketSharp.Frame.WsFrame
-
-
-
-
-
-
-
- WsFrame Class
-
- Documentation for this section has not yet been entered.
-
-
-
-
-
Member Details
-
-
WsFrame Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- opcode
-
- -
- Documentation for this section has not yet been entered.
-
- -
- payloadData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
WsFrame Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- fin
-
- -
- Documentation for this section has not yet been entered.
-
- -
- opcode
-
- -
- Documentation for this section has not yet been entered.
-
- -
- payloadData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
WsFrame Constructor
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- fin
-
- -
- Documentation for this section has not yet been entered.
-
- -
- opcode
-
- -
- Documentation for this section has not yet been entered.
-
- -
- mask
-
- -
- Documentation for this section has not yet been entered.
-
- -
- payloadData
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ExtPayloadLen Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
byte[]
ExtPayloadLen { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Fin Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
GetEnumerator Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Length Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
ulong Length { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Masked Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
Mask Masked { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
MaskingKey Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
byte[]
MaskingKey { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Opcode Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Parse Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- src
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Parse Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- stream
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Parse Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- src
-
- -
- Documentation for this section has not yet been entered.
-
- -
- unmask
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Parse Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- stream
-
- -
- Documentation for this section has not yet been entered.
-
- -
- unmask
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ParseAsync Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- stream
-
- -
- Documentation for this section has not yet been entered.
-
- -
- completed
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ParseAsync Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Parameters
-
-
- -
- stream
-
- -
- Documentation for this section has not yet been entered.
-
- -
- unmask
-
- -
- Documentation for this section has not yet been entered.
-
- -
- completed
-
- -
- Documentation for this section has not yet been entered.
-
-
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadData Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadLen Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
byte PayloadLen { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
PayloadLength Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public
ulong PayloadLength { get; }
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Print Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Rsv1 Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Rsv2 Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
Rsv3 Property
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Value
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
System.Collections.IEnumerable.GetEnumerator Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
-
IEnumerator System.Collections.IEnumerable.GetEnumerator ()
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ToBytes Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
-
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
ToString Method
-
-
- Documentation for this section has not yet been entered.
-
- Syntax
- public override
string ToString ()
- Returns
-
- Documentation for this section has not yet been entered.
-
- Remarks
-
- Requirements
-
- Namespace: WebSocketSharp.Frame
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/index.html b/websocket-sharp/doc/html/WebSocketSharp.Frame/index.html
deleted file mode 100644
index 43142c6d..00000000
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/index.html
+++ /dev/null
@@ -1,270 +0,0 @@
-
-
- websocket-sharp: WebSocketSharp.Frame
-
-
-
-
-
-
- WebSocketSharp.Frame Namespace
-
-
-
-
-
-
-
-
- To be added.
-
-
\ No newline at end of file
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net.Sockets/TcpListenerWebSocketContext.html b/websocket-sharp/doc/html/WebSocketSharp.Net.Sockets/TcpListenerWebSocketContext.html
index 68115b61..afd5df90 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net.Sockets/TcpListenerWebSocketContext.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net.Sockets/TcpListenerWebSocketContext.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -630,7 +630,7 @@
Requirements
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsAuthenticated Property
@@ -650,7 +650,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsLocal Property
@@ -670,7 +670,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSecureConnection Property
@@ -690,7 +690,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Origin Property
@@ -710,7 +710,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Path Property
@@ -730,7 +730,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RequestUri Property
@@ -750,7 +750,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketKey Property
@@ -770,7 +770,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketProtocols Property
@@ -790,7 +790,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketVersion Property
@@ -810,7 +810,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ServerEndPoint Property
@@ -830,7 +830,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
User Property
@@ -850,7 +850,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserEndPoint Property
@@ -870,7 +870,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocket Property
@@ -890,7 +890,7 @@
Requirements
- Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net.Sockets
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemeSelector.html b/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemeSelector.html
index 7023a44c..202cae98 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemeSelector.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemeSelector.html
@@ -235,7 +235,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemes.html b/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemes.html
index 0b3310b1..55a25be0 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemes.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/AuthenticationSchemes.html
@@ -285,7 +285,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/Cookie.html b/websocket-sharp/doc/html/WebSocketSharp.Net/Cookie.html
index 3d125676..380f7523 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/Cookie.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/Cookie.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Cookie Constructor
@@ -623,7 +623,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Cookie Constructor
@@ -662,7 +662,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Cookie Constructor
@@ -707,7 +707,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -727,7 +727,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -747,7 +747,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Discard Property
@@ -767,7 +767,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Domain Property
@@ -787,7 +787,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Equals Method
@@ -818,7 +818,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Expired Property
@@ -838,7 +838,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Expires Property
@@ -858,7 +858,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetHashCode Method
@@ -878,7 +878,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpOnly Property
@@ -898,7 +898,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Name Property
@@ -918,7 +918,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Path Property
@@ -938,7 +938,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Port Property
@@ -958,7 +958,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Secure Property
@@ -978,7 +978,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
TimeStamp Property
@@ -998,7 +998,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ToString Method
@@ -1018,7 +1018,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Value Property
@@ -1038,7 +1038,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Version Property
@@ -1058,7 +1058,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html
index a8ba5a4f..bd487be5 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Add Method
@@ -458,7 +458,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Add Method
@@ -485,7 +485,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CopyTo Method
@@ -518,7 +518,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CopyTo Method
@@ -551,7 +551,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Count Property
@@ -571,7 +571,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetEnumerator Method
@@ -591,7 +591,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsReadOnly Property
@@ -611,7 +611,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSynchronized Property
@@ -631,7 +631,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Item Property
@@ -665,7 +665,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Item Property
@@ -699,7 +699,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SyncRoot Property
@@ -719,7 +719,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html
index 3ac10592..8fd68209 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CookieException Constructor
@@ -389,7 +389,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetObjectData Method
@@ -422,7 +422,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
System.Runtime.Serialization.ISerializable.GetObjectData Method
@@ -456,7 +456,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListener.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListener.html
index 853aba1b..e5d7d1d3 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListener.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListener.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Abort Method
@@ -529,7 +529,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
AuthenticationSchemes Property
@@ -549,7 +549,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
AuthenticationSchemeSelectorDelegate Property
@@ -569,7 +569,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
BeginGetContext Method
@@ -606,7 +606,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Close Method
@@ -622,7 +622,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
EndGetContext Method
@@ -653,7 +653,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetContext Method
@@ -673,7 +673,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IgnoreWriteExceptions Property
@@ -693,7 +693,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsListening Property
@@ -713,7 +713,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSupported Property
@@ -733,7 +733,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Prefixes Property
@@ -753,7 +753,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Realm Property
@@ -773,7 +773,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Start Method
@@ -789,7 +789,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -805,7 +805,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
System.IDisposable.Dispose Method
@@ -822,7 +822,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UnsafeConnectionNtlmAuthentication Property
@@ -842,7 +842,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerContext.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerContext.html
index 3c5db754..3084cb28 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerContext.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerContext.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Request Property
@@ -359,7 +359,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Response Property
@@ -379,7 +379,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
User Property
@@ -399,7 +399,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerException.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerException.html
index 5be32d3e..a30e24e0 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerException.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerException.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpListenerException Constructor
@@ -395,7 +395,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpListenerException Constructor
@@ -428,7 +428,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpListenerException Constructor
@@ -461,7 +461,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ErrorCode Property
@@ -481,7 +481,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerPrefixCollection.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerPrefixCollection.html
index 799e418b..889f0cf4 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerPrefixCollection.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerPrefixCollection.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Clear Method
@@ -443,7 +443,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Contains Method
@@ -474,7 +474,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CopyTo Method
@@ -507,7 +507,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CopyTo Method
@@ -540,7 +540,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Count Property
@@ -560,7 +560,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetEnumerator Method
@@ -580,7 +580,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsReadOnly Property
@@ -600,7 +600,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSynchronized Property
@@ -620,7 +620,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Remove Method
@@ -651,7 +651,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
System.Collections.IEnumerable.GetEnumerator Method
@@ -672,7 +672,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html
index b0410960..281dbfe8 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
BeginGetClientCertificate Method
@@ -682,7 +682,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ClientCertificateError Property
@@ -702,7 +702,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentEncoding Property
@@ -722,7 +722,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentLength64 Property
@@ -742,7 +742,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentType Property
@@ -762,7 +762,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Cookies Property
@@ -782,7 +782,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
EndGetClientCertificate Method
@@ -813,7 +813,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetClientCertificate Method
@@ -833,7 +833,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HasEntityBody Property
@@ -853,7 +853,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -873,7 +873,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpMethod Property
@@ -893,7 +893,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -913,7 +913,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsAuthenticated Property
@@ -933,7 +933,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsLocal Property
@@ -953,7 +953,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSecureConnection Property
@@ -973,7 +973,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsWebSocketRequest Property
@@ -993,7 +993,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
KeepAlive Property
@@ -1013,7 +1013,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
LocalEndPoint Property
@@ -1033,7 +1033,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ProtocolVersion Property
@@ -1053,7 +1053,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
QueryString Property
@@ -1073,7 +1073,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RawUrl Property
@@ -1093,7 +1093,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RemoteEndPoint Property
@@ -1113,7 +1113,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RequestTraceIdentifier Property
@@ -1133,7 +1133,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Url Property
@@ -1153,7 +1153,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UrlReferrer Property
@@ -1173,7 +1173,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserAgent Property
@@ -1193,7 +1193,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserHostAddress Property
@@ -1213,7 +1213,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserHostName Property
@@ -1233,7 +1233,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserLanguages Property
@@ -1253,7 +1253,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html
index 2740c3b4..076b312e 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -621,7 +621,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
AppendCookie Method
@@ -648,7 +648,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -681,7 +681,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Close Method
@@ -697,7 +697,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Close Method
@@ -730,7 +730,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentEncoding Property
@@ -750,7 +750,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentLength64 Property
@@ -770,7 +770,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ContentType Property
@@ -790,7 +790,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Cookies Property
@@ -810,7 +810,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CopyFrom Method
@@ -837,7 +837,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -857,7 +857,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
KeepAlive Property
@@ -877,7 +877,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OutputStream Property
@@ -897,7 +897,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ProtocolVersion Property
@@ -917,7 +917,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Redirect Method
@@ -944,7 +944,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RedirectLocation Property
@@ -964,7 +964,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SendChunked Property
@@ -984,7 +984,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SetCookie Method
@@ -1011,7 +1011,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
StatusCode Property
@@ -1031,7 +1031,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
StatusDescription Property
@@ -1051,7 +1051,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
System.IDisposable.Dispose Method
@@ -1068,7 +1068,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerWebSocketContext.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerWebSocketContext.html
index 116d7ab3..11fb8d1b 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerWebSocketContext.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerWebSocketContext.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -630,7 +630,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsAuthenticated Property
@@ -650,7 +650,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsLocal Property
@@ -670,7 +670,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSecureConnection Property
@@ -690,7 +690,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Origin Property
@@ -710,7 +710,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Path Property
@@ -730,7 +730,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RequestUri Property
@@ -750,7 +750,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketKey Property
@@ -770,7 +770,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketProtocols Property
@@ -790,7 +790,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketVersion Property
@@ -810,7 +810,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ServerEndPoint Property
@@ -830,7 +830,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
User Property
@@ -850,7 +850,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
UserEndPoint Property
@@ -870,7 +870,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocket Property
@@ -890,7 +890,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpStatusCode.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpStatusCode.html
index 9a49700c..9f5e15c6 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpStatusCode.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpStatusCode.html
@@ -597,7 +597,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpVersion.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpVersion.html
index 192c0a45..afcee43c 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpVersion.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpVersion.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Version10 Field
@@ -348,7 +348,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Version11 Field
@@ -364,7 +364,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/WebHeaderCollection.html b/websocket-sharp/doc/html/WebSocketSharp.Net/WebHeaderCollection.html
index 6edc2f53..64576c72 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/WebHeaderCollection.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/WebHeaderCollection.html
@@ -220,7 +220,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -710,7 +710,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -737,7 +737,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -770,7 +770,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -803,7 +803,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -836,7 +836,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -869,7 +869,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -889,7 +889,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -905,7 +905,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -925,7 +925,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -956,7 +956,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -987,7 +987,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1007,7 +1007,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1038,7 +1038,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1071,7 +1071,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1102,7 +1102,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1133,7 +1133,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1164,7 +1164,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1201,7 +1201,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1235,7 +1235,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1269,7 +1269,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1289,7 +1289,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1316,7 +1316,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1343,7 +1343,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1370,7 +1370,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1397,7 +1397,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1430,7 +1430,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1463,7 +1463,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1496,7 +1496,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1530,7 +1530,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1550,7 +1550,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -1570,7 +1570,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/WebSocketContext.html b/websocket-sharp/doc/html/WebSocketSharp.Net/WebSocketContext.html
index 909f6b7a..10aa3e49 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Net/WebSocketContext.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Net/WebSocketContext.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
CookieCollection Property
@@ -468,7 +468,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
@@ -488,7 +488,7 @@
Requirements
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsAuthenticated Property
@@ -508,7 +508,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsLocal Property
@@ -528,7 +528,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsSecureConnection Property
@@ -548,7 +548,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Origin Property
@@ -568,7 +568,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
RequestUri Property
@@ -588,7 +588,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketKey Property
@@ -608,7 +608,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketProtocols Property
@@ -628,7 +628,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SecWebSocketVersion Property
@@ -648,7 +648,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
User Property
@@ -668,7 +668,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocket Property
@@ -688,7 +688,7 @@
Requirements
- Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Net
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/HttpServer.html b/websocket-sharp/doc/html/WebSocketSharp.Server/HttpServer.html
index 0135c31a..733562ac 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/HttpServer.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/HttpServer.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
HttpServer Constructor
@@ -579,7 +579,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
AddService<T> Generic Method
@@ -617,7 +617,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
GetFile Method
@@ -648,7 +648,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnConnect Event
@@ -664,7 +664,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnDelete Event
@@ -680,7 +680,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnError Event
@@ -696,7 +696,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnGet Event
@@ -712,7 +712,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnHead Event
@@ -728,7 +728,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnOptions Event
@@ -744,7 +744,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnPatch Event
@@ -760,7 +760,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnPost Event
@@ -776,7 +776,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnPut Event
@@ -792,7 +792,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnTrace Event
@@ -808,7 +808,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Port Property
@@ -828,7 +828,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ServicePath Property
@@ -848,7 +848,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Start Method
@@ -864,7 +864,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -880,7 +880,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -900,7 +900,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/IServiceHost.html b/websocket-sharp/doc/html/WebSocketSharp.Server/IServiceHost.html
index e9f00a88..58d31c3f 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/IServiceHost.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/IServiceHost.html
@@ -219,7 +219,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Public Properties
@@ -360,7 +360,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -387,7 +387,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Start Method
@@ -403,7 +403,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -419,7 +419,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -439,7 +439,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/ResponseEventArgs.html b/websocket-sharp/doc/html/WebSocketSharp.Server/ResponseEventArgs.html
index 727fa01f..5599d873 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/ResponseEventArgs.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/ResponseEventArgs.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Request Property
@@ -359,7 +359,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Response Property
@@ -379,7 +379,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/ServiceManager.html b/websocket-sharp/doc/html/WebSocketSharp.Server/ServiceManager.html
index 2ead31b4..6ee6345d 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/ServiceManager.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/ServiceManager.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Add Method
@@ -435,7 +435,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -462,7 +462,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Count Property
@@ -482,7 +482,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Path Property
@@ -502,7 +502,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ServiceHost Property
@@ -522,7 +522,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -538,7 +538,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -558,7 +558,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
TryGetServiceHost Method
@@ -595,7 +595,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/SessionManager.html b/websocket-sharp/doc/html/WebSocketSharp.Server/SessionManager.html
index 8602ca40..3cf4efff 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/SessionManager.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/SessionManager.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
@@ -402,8 +402,8 @@
- Stop
- (WebSocketSharp.Frame.CloseStatusCode, string)Documentation for this section has not yet been entered. |
+
Stop
+ (
WebSocketSharp.CloseStatusCode,
string)
Documentation for this section has not yet been entered.
@@ -476,7 +476,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
ActiveID Property
@@ -496,7 +496,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Add Method
@@ -527,7 +527,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -554,7 +554,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -581,7 +581,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Broadping Method
@@ -612,7 +612,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Count Property
@@ -632,7 +632,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
ID Property
@@ -652,7 +652,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
InactiveID Property
@@ -672,7 +672,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Remove Method
@@ -703,7 +703,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Stop Method
@@ -719,18 +719,18 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
- Stop Method
-
+ Stop Method
+
Documentation for this section has not yet been entered.
Syntax
-
+
Parameters
-
+
-
code
@@ -747,12 +747,12 @@
Remarks
-
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -788,7 +788,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
SyncRoot Property
@@ -808,7 +808,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
TryGetByID Method
@@ -845,7 +845,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServer.html b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServer.html
index bca01cb6..3caa6f32 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServer.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServer.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServer Constructor
@@ -633,7 +633,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServer Constructor
@@ -660,7 +660,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServer Constructor
@@ -693,7 +693,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServer Constructor
@@ -726,7 +726,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServer Constructor
@@ -765,7 +765,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
AcceptWebSocket Method
@@ -792,7 +792,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
AddService<T> Generic Method
@@ -830,7 +830,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -857,7 +857,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
ServicePath Property
@@ -877,7 +877,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Stop Method
@@ -893,7 +893,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -913,7 +913,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServerBase.html b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServerBase.html
index be3b2010..c8d1f638 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServerBase.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServerBase.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServerBase Constructor
@@ -551,7 +551,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
WebSocketServerBase Constructor
@@ -630,7 +630,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
AcceptWebSocket Method
@@ -657,7 +657,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Address Property
@@ -677,7 +677,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
BaseUri Property
@@ -697,7 +697,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Error Method
@@ -724,7 +724,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
IsSecure Property
@@ -744,7 +744,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
IsSelfHost Property
@@ -764,7 +764,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
OnError Event
@@ -780,7 +780,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Port Property
@@ -800,7 +800,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Start Method
@@ -816,7 +816,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Stop Method
@@ -832,7 +832,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketService.html b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketService.html
index 9dd2a02b..b66a348b 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketService.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketService.html
@@ -220,7 +220,7 @@
Requirements
- Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server Assembly: websocket-sharp (in websocket-sharp.dll) Assembly Versions: 1.0.2.27062
Members
|
- Stop
- (WebSocketSharp.Frame.CloseStatusCode, string)Documentation for this section has not yet been entered. |
+ Stop
+ (WebSocketSharp.CloseStatusCode, string)Documentation for this section has not yet been entered.
@@ -583,7 +583,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Bind Method
@@ -616,7 +616,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
ID Property
@@ -636,7 +636,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
IsBound Property
@@ -656,7 +656,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnClose Method
@@ -689,7 +689,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnError Method
@@ -722,7 +722,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnMessage Method
@@ -755,7 +755,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
OnOpen Method
@@ -788,7 +788,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Ping Method
@@ -808,7 +808,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Ping Method
@@ -839,7 +839,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
PingAround Method
@@ -859,7 +859,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
PingAround Method
@@ -890,7 +890,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
PingTo Method
@@ -921,7 +921,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
PingTo Method
@@ -958,7 +958,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Publish Method
@@ -985,7 +985,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Publish Method
@@ -1012,7 +1012,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
QueryString Property
@@ -1032,7 +1032,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Send Method
@@ -1059,7 +1059,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Send Method
@@ -1086,7 +1086,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SendTo Method
@@ -1119,7 +1119,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
SendTo Method
@@ -1152,7 +1152,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Sessions Property
@@ -1172,7 +1172,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Start Method
@@ -1188,7 +1188,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -1204,7 +1204,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -1237,18 +1237,18 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
- Stop Method
-
+ Stop Method
+
Documentation for this section has not yet been entered.
Syntax
-
+
Parameters
-
+
-
code
@@ -1265,12 +1265,12 @@
Remarks
-
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServiceHost`1.html b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServiceHost`1.html
index fdfd6f0b..17baafd2 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServiceHost`1.html
+++ b/websocket-sharp/doc/html/WebSocketSharp.Server/WebSocketServiceHost`1.html
@@ -231,7 +231,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -680,7 +680,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -713,7 +713,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -746,7 +746,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -785,7 +785,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -824,7 +824,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WebSocketServiceHost Constructor
@@ -869,7 +869,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
AcceptWebSocket Method
@@ -896,7 +896,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
BindWebSocket Method
@@ -923,7 +923,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Broadcast Method
@@ -950,7 +950,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Broadping Method
@@ -981,7 +981,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Stop Method
@@ -997,7 +997,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Sweeped Property
@@ -1017,7 +1017,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Uri Property
@@ -1037,7 +1037,7 @@
Requirements
- Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp.Server
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp/ByteOrder.html b/websocket-sharp/doc/html/WebSocketSharp/ByteOrder.html
index dc9ac4a3..ab7535f0 100644
--- a/websocket-sharp/doc/html/WebSocketSharp/ByteOrder.html
+++ b/websocket-sharp/doc/html/WebSocketSharp/ByteOrder.html
@@ -245,7 +245,7 @@
Requirements
- Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html b/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html
index f717d056..1a85f355 100644
--- a/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html
+++ b/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html
@@ -222,7 +222,7 @@
Requirements
- Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Members
Requirements
- Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
Reason Property
@@ -391,7 +391,7 @@
Requirements
- Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
WasClean Property
@@ -411,7 +411,7 @@
Requirements
- Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.39341
+ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Assembly Versions: 1.0.2.27062
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Frame/CloseStatusCode.html b/websocket-sharp/doc/html/WebSocketSharp/CloseStatusCode.html
similarity index 80%
rename from websocket-sharp/doc/html/WebSocketSharp.Frame/CloseStatusCode.html
rename to websocket-sharp/doc/html/WebSocketSharp/CloseStatusCode.html
index 5fc6735c..1be146d0 100644
--- a/websocket-sharp/doc/html/WebSocketSharp.Frame/CloseStatusCode.html
+++ b/websocket-sharp/doc/html/WebSocketSharp/CloseStatusCode.html
@@ -1,6 +1,6 @@
- WebSocketSharp.Frame.CloseStatusCode
+ WebSocketSharp.CloseStatusCode