Removed WebSocketSharp.Frame Namespace

This commit is contained in:
sta 2013-01-15 15:29:05 +09:00
parent 86b80270c6
commit e4ffa090d3
163 changed files with 1300 additions and 5595 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -10,7 +10,6 @@ using System.IO;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
using WebSocketSharp; using WebSocketSharp;
using WebSocketSharp.Frame;
namespace Example1 namespace Example1
{ {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -12,10 +12,9 @@ Required namespaces.
```cs ```cs
using WebSocketSharp; using WebSocketSharp;
using WebSocketSharp.Frame;
``` ```
The `WebSocket` class exists in the `WebSocketSharp` namespace, the WebSocket frame resources (e.g. `WsFrame` class) exist in the `WebSocketSharp.Frame` namespace. The `WebSocket` class exists in the `WebSocketSharp` namespace.
#### Step 2 #### #### Step 2 ####
@ -58,7 +57,7 @@ ws.OnMessage += (sender, e) =>
}; };
``` ```
The `e.Type` (`WebSocketSharp.MessageEventArgs.Type`, its type is `WebSocketSharp.Frame.Opcode`) contains the **Frame type** of the data frame, so you check it out and you determine which item you should operate. The `e.Type` (`WebSocketSharp.MessageEventArgs.Type`, its type is `WebSocketSharp.Opcode`) indicates the **Frame type** of the WebSocket frame, so you check it out and you determine which item you should operate.
```cs ```cs
switch (e.Type) switch (e.Type)
@ -135,7 +134,7 @@ If you want to close the WebSocket connection explicitly, you can use the `Close
The `Close` method is overloaded. The `Close` method is overloaded.
The types of `code` are `WebSocketSharp.Frame.CloseStatusCode` and `ushort`, the type of `reason` is `string`. The types of `code` are `WebSocketSharp.CloseStatusCode` and `ushort`, the type of `reason` is `string`.
In addition, the `Close()` and `Close(code)` methods exist. In addition, the `Close()` and `Close(code)` methods exist.

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,7 +28,6 @@
using System; using System;
using System.Text; using System.Text;
using WebSocketSharp.Frame;
namespace WebSocketSharp { namespace WebSocketSharp {

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,7 +28,7 @@
using System; using System;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
/// <summary> /// <summary>
/// Contains the values of the status codes for the WebSocket connection closure. /// Contains the values of the status codes for the WebSocket connection closure.

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,29 +28,11 @@
using System; using System;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
/// <summary> internal enum Fin : byte
/// Contains the values of the FIN bit in the WebSocket data frame.
/// </summary>
/// <remarks>
/// <para>
/// The <b>Fin</b> enumeration contains the values of the <b>FIN</b> bit defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
/// </para>
/// <para>
/// The <b>FIN</b> bit indicates whether a WebSocket frame is the final fragment in a message.
/// </para>
/// </remarks>
public enum Fin : byte
{ {
/// <summary>
/// Equivalent to numeric value 0. Indicates that more frames follow.
/// </summary>
MORE = 0x0, MORE = 0x0,
/// <summary>
/// Equivalent to numeric value 1. Indicates a final frame.
/// </summary>
FINAL = 0x1 FINAL = 0x1
} }
} }

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,29 +28,11 @@
using System; using System;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
/// <summary> internal enum Mask : byte
/// Contains the values of the MASK bit in the WebSocket data frame.
/// </summary>
/// <remarks>
/// <para>
/// The <b>Mask</b> enumeration contains the values of the <b>MASK</b> bit defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
/// </para>
/// <para>
/// The <b>MASK</b> bit indicates whether the payload data in a WebSocket frame is masked.
/// </para>
/// </remarks>
public enum Mask : byte
{ {
/// <summary>
/// Equivalent to numeric value 0. Indicates that the payload data in a frame is not masked, no masking key in this frame.
/// </summary>
UNMASK = 0x0, UNMASK = 0x0,
/// <summary>
/// Equivalent to numeric value 1. Indicates that the payload data in a frame is masked, a masking key is present in this frame.
/// </summary>
MASK = 0x1 MASK = 0x1
} }
} }

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,7 +28,6 @@
using System; using System;
using System.Text; using System.Text;
using WebSocketSharp.Frame;
namespace WebSocketSharp { namespace WebSocketSharp {

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,7 +28,7 @@
using System; using System;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
/// <summary> /// <summary>
/// Contains the values of the opcodes that denotes the frame type of the WebSocket frame. /// Contains the values of the opcodes that denotes the frame type of the WebSocket frame.

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -32,9 +32,9 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
public class PayloadData : IEnumerable<byte> internal class PayloadData : IEnumerable<byte>
{ {
#region Field #region Field

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -28,29 +28,11 @@
using System; using System;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
/// <summary> internal enum Rsv : byte
/// Contains the values of the reserved bit in the WebSocket data frame.
/// </summary>
/// <remarks>
/// <para>
/// The <b>Rsv</b> enumeration contains the values of the reserved bit (<b>RSV1, RSV2, RSV3</b>) defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
/// </para>
/// <para>
/// The reserved bit must be zero unless an extension is negotiated that defines meanings for non-zero values.
/// </para>
/// </remarks>
public enum Rsv : byte
{ {
/// <summary>
/// Equivalent to numeric value 0.
/// </summary>
OFF = 0x0, OFF = 0x0,
/// <summary>
/// Equivalent to numeric value 1.
/// </summary>
ON = 0x1 ON = 0x1
} }
} }

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -30,7 +30,6 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Timers; using System.Timers;
using WebSocketSharp.Frame;
namespace WebSocketSharp.Server { namespace WebSocketSharp.Server {

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -30,12 +30,11 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.Threading; using System.Threading;
using WebSocketSharp.Frame;
namespace WebSocketSharp.Server { namespace WebSocketSharp.Server {
public abstract class WebSocketService public abstract class WebSocketService {
{
#region Private Fields #region Private Fields
private SessionManager _sessions; private SessionManager _sessions;

View File

@ -8,7 +8,7 @@
* The MIT License * The MIT License
* *
* Copyright (c) 2009 Adam MacBeth * Copyright (c) 2009 Adam MacBeth
* Copyright (c) 2010-2012 sta.blockhead * Copyright (c) 2010-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -41,7 +41,6 @@ using System.Net.Sockets;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
using WebSocketSharp.Frame;
using WebSocketSharp.Net; using WebSocketSharp.Net;
using WebSocketSharp.Net.Sockets; using WebSocketSharp.Net.Sockets;

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -32,9 +32,9 @@ using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace WebSocketSharp.Frame { namespace WebSocketSharp {
public class WsFrame : IEnumerable<byte> internal class WsFrame : IEnumerable<byte>
{ {
#region Field #region Field

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2012 sta.blockhead * Copyright (c) 2012-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -27,10 +27,9 @@
#endregion #endregion
using System; using System;
using WebSocketSharp.Frame;
namespace WebSocketSharp namespace WebSocketSharp {
{
public class WsReceivedTooBigMessageException : Exception public class WsReceivedTooBigMessageException : Exception
{ {
private static readonly string _defaultMessage; private static readonly string _defaultMessage;

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2010-2012 sta.blockhead * Copyright (c) 2010-2013 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -34,7 +34,6 @@ using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography.X509Certificates;
using System.Text; using System.Text;
using WebSocketSharp.Frame;
using WebSocketSharp.Net.Security; using WebSocketSharp.Net.Security;
namespace WebSocketSharp { namespace WebSocketSharp {

View File

@ -669,7 +669,7 @@
Gets the type of received data. Gets the type of received data.
</summary> </summary>
<value> <value>
One of the <see cref="T:WebSocketSharp.Frame.Opcode" /> that indicates the type of received data. One of the <see cref="!:WebSocketSharp.Frame.Opcode" /> that indicates the type of received data.
</value> </value>
</member> </member>
<member name="T:WebSocketSharp.CloseEventArgs"> <member name="T:WebSocketSharp.CloseEventArgs">
@ -721,207 +721,6 @@
Indicates a Big-endian. Indicates a Big-endian.
</summary> </summary>
</member> </member>
<member name="T:WebSocketSharp.Frame.CloseStatusCode">
<summary>
Contains the values of the status codes for the WebSocket connection closure.
</summary>
<remarks>
<para>
The <b>CloseStatusCode</b> enumeration contains the values of the status codes for the WebSocket connection closure
defined in <a href="http://tools.ietf.org/html/rfc6455#section-7.4.1">RFC 6455</a> for the WebSocket protocol.
</para>
<para>
"<b>Reserved value</b>" 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.
</para>
</remarks>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.NORMAL">
<summary>
Equivalent to close status 1000. Indicates a normal closure.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.AWAY">
<summary>
Equivalent to close status 1001. Indicates that an endpoint is "going away".
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.PROTOCOL_ERROR">
<summary>
Equivalent to close status 1002. Indicates that an endpoint is terminating the connection
due to a protocol error.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.INCORRECT_DATA">
<summary>
Equivalent to close status 1003. Indicates that an endpoint is terminating the connection
because it has received a type of data it cannot accept.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.UNDEFINED">
<summary>
Equivalent to close status 1004. Still undefined. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.NO_STATUS_CODE">
<summary>
Equivalent to close status 1005. Indicates that no status code was actually present. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.ABNORMAL">
<summary>
Equivalent to close status 1006. Indicates that the connection was closed abnormally. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.INCONSISTENT_DATA">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.POLICY_VIOLATION">
<summary>
Equivalent to close status 1008. Indicates that an endpoint is terminating the connection
because it has received a message that violates its policy.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.TOO_BIG">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.IGNORE_EXTENSION">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.SERVER_ERROR">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.CloseStatusCode.TLS_HANDSHAKE_FAILURE">
<summary>
Equivalent to close status 1015. Indicates that the connection was closed due to a failure to perform
a TLS handshake. Reserved value.
</summary>
</member>
<member name="T:WebSocketSharp.Frame.Fin">
<summary>
Contains the values of the FIN bit in the WebSocket data frame.
</summary>
<remarks>
<para>
The <b>Fin</b> enumeration contains the values of the <b>FIN</b> bit defined in
<see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
</para>
<para>
The <b>FIN</b> bit indicates whether a WebSocket frame is the final fragment in a message.
</para>
</remarks>
</member>
<member name="F:WebSocketSharp.Frame.Fin.MORE">
<summary>
Equivalent to numeric value 0. Indicates that more frames follow.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Fin.FINAL">
<summary>
Equivalent to numeric value 1. Indicates a final frame.
</summary>
</member>
<member name="T:WebSocketSharp.Frame.Mask">
<summary>
Contains the values of the MASK bit in the WebSocket data frame.
</summary>
<remarks>
<para>
The <b>Mask</b> enumeration contains the values of the <b>MASK</b> bit defined in
<see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
</para>
<para>
The <b>MASK</b> bit indicates whether the payload data in a WebSocket frame is masked.
</para>
</remarks>
</member>
<member name="F:WebSocketSharp.Frame.Mask.UNMASK">
<summary>
Equivalent to numeric value 0. Indicates that the payload data in a frame is not masked, no masking key in this frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Mask.MASK">
<summary>
Equivalent to numeric value 1. Indicates that the payload data in a frame is masked, a masking key is present in this frame.
</summary>
</member>
<member name="T:WebSocketSharp.Frame.Opcode">
<summary>
Contains the values of the opcodes that denotes the frame type of the WebSocket frame.
</summary>
<remarks>
The <b>Opcode</b> enumeration contains the values of the opcodes defined in
<see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
</remarks>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.CONT">
<summary>
Equivalent to numeric value 0. Indicates a continuation frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.TEXT">
<summary>
Equivalent to numeric value 1. Indicates a text frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.BINARY">
<summary>
Equivalent to numeric value 2. Indicates a binary frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.CLOSE">
<summary>
Equivalent to numeric value 8. Indicates a connection close frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.PING">
<summary>
Equivalent to numeric value 9. Indicates a ping frame.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Opcode.PONG">
<summary>
Equivalent to numeric value 10. Indicates a pong frame.
</summary>
</member>
<member name="T:WebSocketSharp.Frame.Rsv">
<summary>
Contains the values of the reserved bit in the WebSocket data frame.
</summary>
<remarks>
<para>
The <b>Rsv</b> enumeration contains the values of the reserved bit (<b>RSV1, RSV2, RSV3</b>) defined in
<see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
</para>
<para>
The reserved bit must be zero unless an extension is negotiated that defines meanings for non-zero values.
</para>
</remarks>
</member>
<member name="F:WebSocketSharp.Frame.Rsv.OFF">
<summary>
Equivalent to numeric value 0.
</summary>
</member>
<member name="F:WebSocketSharp.Frame.Rsv.ON">
<summary>
Equivalent to numeric value 1.
</summary>
</member>
<member name="T:WebSocketSharp.ErrorEventArgs"> <member name="T:WebSocketSharp.ErrorEventArgs">
<summary> <summary>
Contains the event data associated with a error event. Contains the event data associated with a error event.
@ -1066,12 +865,12 @@
Closes the connection and releases all associated resources after sends a Close control frame. Closes the connection and releases all associated resources after sends a Close control frame.
</summary> </summary>
</member> </member>
<member name="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode)"> <member name="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.CloseStatusCode)">
<summary> <summary>
Closes the connection and releases all associated resources after sends a Close control frame. Closes the connection and releases all associated resources after sends a Close control frame.
</summary> </summary>
<param name="code"> <param name="code">
A <see cref="T:WebSocketSharp.Frame.CloseStatusCode" /> that contains a status code indicating a reason for closure. A <see cref="!:WebSocketSharp.Frame.CloseStatusCode" /> that contains a status code indicating a reason for closure.
</param> </param>
</member> </member>
<member name="M:WebSocketSharp.WebSocket.Close(System.UInt16)"> <member name="M:WebSocketSharp.WebSocket.Close(System.UInt16)">
@ -1082,12 +881,12 @@
A <see cref="T:System.UInt16" /> that contains a status code indicating a reason for closure. A <see cref="T:System.UInt16" /> that contains a status code indicating a reason for closure.
</param> </param>
</member> </member>
<member name="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode,System.String)"> <member name="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.CloseStatusCode,System.String)">
<summary> <summary>
Closes the connection and releases all associated resources after sends a Close control frame. Closes the connection and releases all associated resources after sends a Close control frame.
</summary> </summary>
<param name="code"> <param name="code">
A <see cref="T:WebSocketSharp.Frame.CloseStatusCode" /> that contains a status code indicating a reason for closure. A <see cref="!:WebSocketSharp.Frame.CloseStatusCode" /> that contains a status code indicating a reason for closure.
</param> </param>
<param name="reason"> <param name="reason">
A <see cref="T:System.String" /> that contains a reason for closure. A <see cref="T:System.String" /> that contains a reason for closure.
@ -1396,5 +1195,134 @@
Stops the WebSocket service host. Stops the WebSocket service host.
</summary> </summary>
</member> </member>
<member name="T:WebSocketSharp.CloseStatusCode">
<summary>
Contains the values of the status codes for the WebSocket connection closure.
</summary>
<remarks>
<para>
The <b>CloseStatusCode</b> enumeration contains the values of the status codes for the WebSocket connection closure
defined in <a href="http://tools.ietf.org/html/rfc6455#section-7.4.1">RFC 6455</a> for the WebSocket protocol.
</para>
<para>
"<b>Reserved value</b>" 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.
</para>
</remarks>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.NORMAL">
<summary>
Equivalent to close status 1000. Indicates a normal closure.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.AWAY">
<summary>
Equivalent to close status 1001. Indicates that an endpoint is "going away".
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.PROTOCOL_ERROR">
<summary>
Equivalent to close status 1002. Indicates that an endpoint is terminating the connection
due to a protocol error.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.INCORRECT_DATA">
<summary>
Equivalent to close status 1003. Indicates that an endpoint is terminating the connection
because it has received a type of data it cannot accept.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.UNDEFINED">
<summary>
Equivalent to close status 1004. Still undefined. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.NO_STATUS_CODE">
<summary>
Equivalent to close status 1005. Indicates that no status code was actually present. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.ABNORMAL">
<summary>
Equivalent to close status 1006. Indicates that the connection was closed abnormally. Reserved value.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.INCONSISTENT_DATA">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.POLICY_VIOLATION">
<summary>
Equivalent to close status 1008. Indicates that an endpoint is terminating the connection
because it has received a message that violates its policy.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.TOO_BIG">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.IGNORE_EXTENSION">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.SERVER_ERROR">
<summary>
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.
</summary>
</member>
<member name="F:WebSocketSharp.CloseStatusCode.TLS_HANDSHAKE_FAILURE">
<summary>
Equivalent to close status 1015. Indicates that the connection was closed due to a failure to perform
a TLS handshake. Reserved value.
</summary>
</member>
<member name="T:WebSocketSharp.Opcode">
<summary>
Contains the values of the opcodes that denotes the frame type of the WebSocket frame.
</summary>
<remarks>
The <b>Opcode</b> enumeration contains the values of the opcodes defined in
<see href="http://tools.ietf.org/html/rfc6455#section-5.2">RFC 6455</see> for the WebSocket protocol.
</remarks>
</member>
<member name="F:WebSocketSharp.Opcode.CONT">
<summary>
Equivalent to numeric value 0. Indicates a continuation frame.
</summary>
</member>
<member name="F:WebSocketSharp.Opcode.TEXT">
<summary>
Equivalent to numeric value 1. Indicates a text frame.
</summary>
</member>
<member name="F:WebSocketSharp.Opcode.BINARY">
<summary>
Equivalent to numeric value 2. Indicates a binary frame.
</summary>
</member>
<member name="F:WebSocketSharp.Opcode.CLOSE">
<summary>
Equivalent to numeric value 8. Indicates a connection close frame.
</summary>
</member>
<member name="F:WebSocketSharp.Opcode.PING">
<summary>
Equivalent to numeric value 9. Indicates a ping frame.
</summary>
</member>
<member name="F:WebSocketSharp.Opcode.PONG">
<summary>
Equivalent to numeric value 10. Indicates a pong frame.
</summary>
</member>
</members> </members>
</doc> </doc>

View File

@ -1,262 +0,0 @@
<html>
<head>
<title>WebSocketSharp.Frame.Fin</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
a { text-decoration: none }
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
</style>
<script type="text/JavaScript">
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
</script>
</head>
<body>
<div class="CollectionTitle">
<a href="../index.html">websocket-sharp</a> : <a href="index.html">WebSocketSharp.Frame Namespace</a></div>
<div class="SideBar">
<p>
<a href="#T:WebSocketSharp.Frame.Fin">Overview</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Fin:Signature">Signature</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Fin:Docs">Remarks</a>
</p>
<p>
<a href="#Members">Members</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Fin:Members">Member Details</a>
</p>
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Frame.Fin">Fin Enum</h1>
<p class="Summary" id="T:WebSocketSharp.Frame.Fin:Summary">
Contains the values of the FIN bit in the WebSocket data frame.
</p>
<div id="T:WebSocketSharp.Frame.Fin:Signature">
<h2>Syntax</h2>
<div class="Signature">public enum <b>Fin</b></div>
</div>
<div class="Remarks" id="T:WebSocketSharp.Frame.Fin:Docs">
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Fin:Docs:Remarks">
<p>
The Fin enumeration contains the values of the FIN bit defined in
RFC 6455 for the WebSocket protocol.
</p>
<p>
The FIN bit indicates whether a WebSocket frame is the final fragment in a message.
</p>
</div>
<h2 class="Section">Members</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Fin:Docs:Members">
<table class="Enumeration">
<tr>
<th>Member Name</th>
<th>Description</th>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Fin.FINAL">
<b>FINAL</b>
</td>
<td>
Equivalent to numeric value 1. Indicates a final frame.
</td>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Fin.MORE">
<b>MORE</b>
</td>
<td>
Equivalent to numeric value 0. Indicates that more frames follow.
</td>
</tr>
</table>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Fin:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
</div>
<div class="Members" id="T:WebSocketSharp.Frame.Fin:Members">
</div>
<hr size="1" />
<div class="Copyright">
</div>
</body>
</html>

View File

@ -1,262 +0,0 @@
<html>
<head>
<title>WebSocketSharp.Frame.Mask</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
a { text-decoration: none }
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
</style>
<script type="text/JavaScript">
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
</script>
</head>
<body>
<div class="CollectionTitle">
<a href="../index.html">websocket-sharp</a> : <a href="index.html">WebSocketSharp.Frame Namespace</a></div>
<div class="SideBar">
<p>
<a href="#T:WebSocketSharp.Frame.Mask">Overview</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Mask:Signature">Signature</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Mask:Docs">Remarks</a>
</p>
<p>
<a href="#Members">Members</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Mask:Members">Member Details</a>
</p>
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Frame.Mask">Mask Enum</h1>
<p class="Summary" id="T:WebSocketSharp.Frame.Mask:Summary">
Contains the values of the MASK bit in the WebSocket data frame.
</p>
<div id="T:WebSocketSharp.Frame.Mask:Signature">
<h2>Syntax</h2>
<div class="Signature">public enum <b>Mask</b></div>
</div>
<div class="Remarks" id="T:WebSocketSharp.Frame.Mask:Docs">
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Mask:Docs:Remarks">
<p>
The Mask enumeration contains the values of the MASK bit defined in
RFC 6455 for the WebSocket protocol.
</p>
<p>
The MASK bit indicates whether the payload data in a WebSocket frame is masked.
</p>
</div>
<h2 class="Section">Members</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Mask:Docs:Members">
<table class="Enumeration">
<tr>
<th>Member Name</th>
<th>Description</th>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Mask.MASK">
<b>MASK</b>
</td>
<td>
Equivalent to numeric value 1. Indicates that the payload data in a frame is masked, a masking key is present in this frame.
</td>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Mask.UNMASK">
<b>UNMASK</b>
</td>
<td>
Equivalent to numeric value 0. Indicates that the payload data in a frame is not masked, no masking key in this frame.
</td>
</tr>
</table>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Mask:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
</div>
<div class="Members" id="T:WebSocketSharp.Frame.Mask:Members">
</div>
<hr size="1" />
<div class="Copyright">
</div>
</body>
</html>

View File

@ -1,859 +0,0 @@
<html>
<head>
<title>WebSocketSharp.Frame.PayloadData</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
a { text-decoration: none }
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
</style>
<script type="text/JavaScript">
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
</script>
</head>
<body>
<div class="CollectionTitle">
<a href="../index.html">websocket-sharp</a> : <a href="index.html">WebSocketSharp.Frame Namespace</a></div>
<div class="SideBar">
<p>
<a href="#T:WebSocketSharp.Frame.PayloadData">Overview</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.PayloadData:Signature">Signature</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.PayloadData:Docs">Remarks</a>
</p>
<p>
<a href="#Members">Members</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.PayloadData:Members">Member Details</a>
</p>
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Frame.PayloadData">PayloadData Class</h1>
<p class="Summary" id="T:WebSocketSharp.Frame.PayloadData:Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<div id="T:WebSocketSharp.Frame.PayloadData:Signature">
<h2>Syntax</h2>
<div class="Signature">public class <b>PayloadData</b> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Collections.Generic.IEnumerable`1">IEnumerable&lt;byte&gt;</a></div>
</div>
<div class="Remarks" id="T:WebSocketSharp.Frame.PayloadData:Docs">
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.PayloadData:Docs:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.PayloadData:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members">
<p>
See Also: Inherited members from
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object">object</a>.
</p>
<h2 class="Section">Public Constructors</h2>
<div class="SectionBox" id="Public Constructors">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<div>
<b>
<a href="#C:WebSocketSharp.Frame.PayloadData(System.Byte[])">PayloadData</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[])</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<div>
<b>
<a href="#C:WebSocketSharp.Frame.PayloadData(System.String)">PayloadData</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a>)</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<div>
<b>
<a href="#C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean)">PayloadData</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[], <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a>)</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<div>
<b>
<a href="#C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[])">PayloadData</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[], <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[])</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<div>
<b>
<a href="#C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean)">PayloadData</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[], <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[], <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a>)</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
</table>
</div>
</div>
<h2 class="Section">Public Fields</h2>
<div class="SectionBox" id="Public Fields">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>
<div>const </div>
</td>
<td>
<b>
<a href="#F:WebSocketSharp.Frame.PayloadData.MaxLength">MaxLength</a>
</b>
</td>
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a>
</i> (9223372036854775807). <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</tr>
</table>
</div>
</div>
<h2 class="Section">Public Properties</h2>
<div class="SectionBox" id="Public Properties">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>[read-only]<div></div></td>
<td>
<b>
<a href="#P:WebSocketSharp.Frame.PayloadData.ApplicationData">ApplicationData</a>
</b>
</td>
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[]</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</tr>
<tr valign="top">
<td>[read-only]<div></div></td>
<td>
<b>
<a href="#P:WebSocketSharp.Frame.PayloadData.ExtensionData">ExtensionData</a>
</b>
</td>
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[]</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</tr>
<tr valign="top">
<td>[read-only]<div></div></td>
<td>
<b>
<a href="#P:WebSocketSharp.Frame.PayloadData.IsMasked">IsMasked</a>
</b>
</td>
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</tr>
<tr valign="top">
<td>[read-only]<div></div></td>
<td>
<b>
<a href="#P:WebSocketSharp.Frame.PayloadData.Length">Length</a>
</b>
</td>
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</tr>
</table>
</div>
</div>
<h2 class="Section">Public Methods</h2>
<div class="SectionBox" id="Public Methods">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>
<div>
</div>
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Frame.PayloadData.GetEnumerator">GetEnumerator</a>
</b>()<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Collections.Generic.IEnumerator`1">IEnumerator&lt;byte&gt;</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[])">Mask</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[])<blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</tr>
<tr valign="top">
<td>
<div>
</div>
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Frame.PayloadData.ToBytes">ToBytes</a>
</b>()<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[]</nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</tr>
<tr valign="top">
<td>
<div>override </div>
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Frame.PayloadData.ToString">ToString</a>
</b>()<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</tr>
</table>
</div>
</div>
<h2 class="Section">Explicitly Implemented Interface Members</h2>
<div class="SectionBox" id="Explicitly Implemented Interface Members">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>
<div>
</div>
</td>
<td>
<a href="#M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator">
<b>IEnumerable.GetEnumerator</b>
</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
</table>
</div>
</div>
<h2 class="Section">Extension Methods</h2>
<div class="SectionBox" id="Extension Methods">
<div class="SubsectionBox">
<table class="TypeMembers">
<tr valign="top">
<td>
<div>static </div>
</td>
<td colspan="2">
<b>
<a href="../WebSocketSharp/Ext.html#M:WebSocketSharp.Ext.IsNull``1(``0)">IsNull&lt;T&gt;</a>
</b>(<i>this</i> <i title="&#xA; The type of the parameter.&#xA; ">T</i>)<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a></nobr><blockquote>
Determines whether the specified object is <tt>null</tt>.
</blockquote></td>
</tr>
<tr valign="top">
<td>
<div>static </div>
</td>
<td colspan="2">
<b>
<a href="../WebSocketSharp/Ext.html#M:WebSocketSharp.Ext.IsNullDo``1(``0,System.Action)">IsNullDo&lt;T&gt;</a>
</b>(<i>this</i> <i title="&#xA; The type of the parameter.&#xA; ">T</i>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a>)<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a></nobr><blockquote>
Determines whether the specified object is <tt>null</tt>.
And invokes the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate if the specified object is <tt>null</tt>.
</blockquote></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="Members" id="T:WebSocketSharp.Frame.PayloadData:Members">
<h2 class="Section" id="MemberDetails">Member Details</h2>
<div class="SectionBox" id="_MemberDetails">
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[])">PayloadData Constructor</h3>
<blockquote id="C:WebSocketSharp.Frame.PayloadData(System.Byte[]):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>PayloadData</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] appData)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[]):Parameters">
<dl>
<dt>
<i>appData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[]):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[]):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.String)">PayloadData Constructor</h3>
<blockquote id="C:WebSocketSharp.Frame.PayloadData(System.String):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>PayloadData</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> appData)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.String):Parameters">
<dl>
<dt>
<i>appData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.String):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean)">PayloadData Constructor</h3>
<blockquote id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>PayloadData</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] appData, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a> masked)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean):Parameters">
<dl>
<dt>
<i>appData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
<dt>
<i>masked</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[])">PayloadData Constructor</h3>
<blockquote id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[]):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>PayloadData</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] extData, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] appData)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[]):Parameters">
<dl>
<dt>
<i>extData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
<dt>
<i>appData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[]):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[]):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean)">PayloadData Constructor</h3>
<blockquote id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>PayloadData</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] extData, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] appData, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a> masked)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean):Parameters">
<dl>
<dt>
<i>extData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
<dt>
<i>appData</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
<dt>
<i>masked</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="P:WebSocketSharp.Frame.PayloadData.ApplicationData">ApplicationData Property</h3>
<blockquote id="P:WebSocketSharp.Frame.PayloadData.ApplicationData:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] <b>ApplicationData</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Frame.PayloadData.ApplicationData:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ApplicationData:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ApplicationData:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="P:WebSocketSharp.Frame.PayloadData.ExtensionData">ExtensionData Property</h3>
<blockquote id="P:WebSocketSharp.Frame.PayloadData.ExtensionData:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] <b>ExtensionData</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Frame.PayloadData.ExtensionData:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ExtensionData:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ExtensionData:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator">GetEnumerator Method</h3>
<blockquote id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Collections.Generic.IEnumerator`1">IEnumerator&lt;byte&gt;</a> <b>GetEnumerator</b> ()</div>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="P:WebSocketSharp.Frame.PayloadData.IsMasked">IsMasked Property</h3>
<blockquote id="P:WebSocketSharp.Frame.PayloadData.IsMasked:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a> <b>IsMasked</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Frame.PayloadData.IsMasked:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.IsMasked:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.IsMasked:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="P:WebSocketSharp.Frame.PayloadData.Length">Length Property</h3>
<blockquote id="P:WebSocketSharp.Frame.PayloadData.Length:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> <b>Length</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Frame.PayloadData.Length:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.Length:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.Length:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[])">Mask Method</h3>
<blockquote id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[]):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Mask</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] maskingKey)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[]):Parameters">
<dl>
<dt>
<i>maskingKey</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[]):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[]):Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="F:WebSocketSharp.Frame.PayloadData.MaxLength">MaxLength Field</h3>
<blockquote id="F:WebSocketSharp.Frame.PayloadData.MaxLength:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<p>
<b>Value: </b>9223372036854775807</p>
<h2>Syntax</h2>
<div class="Signature">public const <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> <b>MaxLength</b> </div>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="F:WebSocketSharp.Frame.PayloadData.MaxLength:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="F:WebSocketSharp.Frame.PayloadData.MaxLength:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
<blockquote id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Collections.IEnumerator">IEnumerator</a> <b>System.Collections.IEnumerable.GetEnumerator</b> ()</div>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToBytes">ToBytes Method</h3>
<blockquote id="M:WebSocketSharp.Frame.PayloadData.ToBytes:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[] <b>ToBytes</b> ()</div>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToBytes:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToBytes:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToBytes:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToString">ToString Method</h3>
<blockquote id="M:WebSocketSharp.Frame.PayloadData.ToString:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<h2>Syntax</h2>
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> <b>ToString</b> ()</div>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToString:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToString:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToString:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
<hr size="1" />
</blockquote>
</div>
</div>
<hr size="1" />
<div class="Copyright">
</div>
</body>
</html>

View File

@ -1,262 +0,0 @@
<html>
<head>
<title>WebSocketSharp.Frame.Rsv</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
a { text-decoration: none }
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
</style>
<script type="text/JavaScript">
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
</script>
</head>
<body>
<div class="CollectionTitle">
<a href="../index.html">websocket-sharp</a> : <a href="index.html">WebSocketSharp.Frame Namespace</a></div>
<div class="SideBar">
<p>
<a href="#T:WebSocketSharp.Frame.Rsv">Overview</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Rsv:Signature">Signature</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Rsv:Docs">Remarks</a>
</p>
<p>
<a href="#Members">Members</a>
</p>
<p>
<a href="#T:WebSocketSharp.Frame.Rsv:Members">Member Details</a>
</p>
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Frame.Rsv">Rsv Enum</h1>
<p class="Summary" id="T:WebSocketSharp.Frame.Rsv:Summary">
Contains the values of the reserved bit in the WebSocket data frame.
</p>
<div id="T:WebSocketSharp.Frame.Rsv:Signature">
<h2>Syntax</h2>
<div class="Signature">public enum <b>Rsv</b></div>
</div>
<div class="Remarks" id="T:WebSocketSharp.Frame.Rsv:Docs">
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Rsv:Docs:Remarks">
<p>
The Rsv enumeration contains the values of the reserved bit (RSV1, RSV2, RSV3) defined in
RFC 6455 for the WebSocket protocol.
</p>
<p>
The reserved bit must be zero unless an extension is negotiated that defines meanings for non-zero values.
</p>
</div>
<h2 class="Section">Members</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Rsv:Docs:Members">
<table class="Enumeration">
<tr>
<th>Member Name</th>
<th>Description</th>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Rsv.OFF">
<b>OFF</b>
</td>
<td>
Equivalent to numeric value 0.
</td>
</tr>
<tr valign="top">
<td id="F:WebSocketSharp.Frame.Rsv.ON">
<b>ON</b>
</td>
<td>
Equivalent to numeric value 1.
</td>
</tr>
</table>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Frame.Rsv:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Frame<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
</div>
<div class="Members" id="T:WebSocketSharp.Frame.Rsv:Members">
</div>
<hr size="1" />
<div class="Copyright">
</div>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,270 +0,0 @@
<html>
<head>
<title>websocket-sharp: WebSocketSharp.Frame</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
a { text-decoration: none }
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
</style>
<script type="text/JavaScript">
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
</script>
</head>
<body>
<div class="CollectionTitle">
<a href="../index.html">websocket-sharp</a>
</div>
<h1 class="PageTitle">WebSocketSharp.Frame Namespace</h1>
<p class="Summary">
</p>
<div>
</div>
<div class="Remarks">
<h2 class="Section"> Namespace</h2>
<p>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
<table class="TypesListing" style="margin-top: 1em">
<tr>
<th>Type</th>
<th>Description</th>
</tr>
<tr valign="top">
<td>
<a href="./CloseStatusCode.html">CloseStatusCode</a>
</td>
<td>
Contains the values of the status codes for the WebSocket connection closure.
</td>
</tr>
<tr valign="top">
<td>
<a href="./Fin.html">Fin</a>
</td>
<td>
Contains the values of the FIN bit in the WebSocket data frame.
</td>
</tr>
<tr valign="top">
<td>
<a href="./Mask.html">Mask</a>
</td>
<td>
Contains the values of the MASK bit in the WebSocket data frame.
</td>
</tr>
<tr valign="top">
<td>
<a href="./Opcode.html">Opcode</a>
</td>
<td>
Contains the values of the opcodes that denotes the frame type of the WebSocket frame.
</td>
</tr>
<tr valign="top">
<td>
<a href="./PayloadData.html">PayloadData</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
<tr valign="top">
<td>
<a href="./Rsv.html">Rsv</a>
</td>
<td>
Contains the values of the reserved bit in the WebSocket data frame.
</td>
</tr>
<tr valign="top">
<td>
<a href="./WsFrame.html">WsFrame</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
</tr>
</table>
</div>
<div class="Members">
</div>
<hr size="1" />
<div class="Copyright">To be added.</div>
</body>
</html>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -610,7 +610,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.CookieCollection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.CookieCollection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Headers">Headers Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Headers">Headers Property</h3>
@ -630,7 +630,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Headers:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Headers:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsAuthenticated">IsAuthenticated Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsAuthenticated">IsAuthenticated Property</h3>
@ -650,7 +650,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsAuthenticated:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsAuthenticated:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsLocal">IsLocal Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsLocal">IsLocal Property</h3>
@ -670,7 +670,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsLocal:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsLocal:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsSecureConnection">IsSecureConnection Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsSecureConnection">IsSecureConnection Property</h3>
@ -690,7 +690,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsSecureConnection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.IsSecureConnection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Origin">Origin Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Origin">Origin Property</h3>
@ -710,7 +710,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Origin:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Origin:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Path">Path Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Path">Path Property</h3>
@ -730,7 +730,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Path:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.Path:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.RequestUri">RequestUri Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.RequestUri">RequestUri Property</h3>
@ -750,7 +750,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.RequestUri:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.RequestUri:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3>
@ -770,7 +770,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketKey:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketKey:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3>
@ -790,7 +790,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketProtocols:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketProtocols:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3>
@ -810,7 +810,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketVersion:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.SecWebSocketVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.ServerEndPoint">ServerEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.ServerEndPoint">ServerEndPoint Property</h3>
@ -830,7 +830,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.ServerEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.ServerEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.User">User Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.User">User Property</h3>
@ -850,7 +850,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.User:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.User:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.UserEndPoint">UserEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.UserEndPoint">UserEndPoint Property</h3>
@ -870,7 +870,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.UserEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.UserEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.WebSocket">WebSocket Property</h3> <h3 id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.WebSocket">WebSocket Property</h3>
@ -890,7 +890,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.WebSocket:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Sockets.TcpListenerWebSocketContext.WebSocket:Version Information">
<b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net.Sockets<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -235,7 +235,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
</div> </div>
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Members"> <div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Members">
</div> </div>

View File

@ -285,7 +285,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemes:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemes:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
</div> </div>
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemes:Members"> <div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemes:Members">
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.Cookie:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.Cookie:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -590,7 +590,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.Cookie:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.Cookie:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String)">Cookie Constructor</h3> <h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String)">Cookie Constructor</h3>
@ -623,7 +623,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String)">Cookie Constructor</h3> <h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String)">Cookie Constructor</h3>
@ -662,7 +662,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String,System.String)">Cookie Constructor</h3> <h3 id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String,System.String)">Cookie Constructor</h3>
@ -707,7 +707,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String,System.String):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.Cookie(System.String,System.String,System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Comment">Comment Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Comment">Comment Property</h3>
@ -727,7 +727,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Comment:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Comment:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.CommentUri">CommentUri Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.CommentUri">CommentUri Property</h3>
@ -747,7 +747,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.CommentUri:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.CommentUri:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Discard">Discard Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Discard">Discard Property</h3>
@ -767,7 +767,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Discard:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Discard:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Domain">Domain Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Domain">Domain Property</h3>
@ -787,7 +787,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Domain:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Domain:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.Cookie.Equals(System.Object)">Equals Method</h3> <h3 id="M:WebSocketSharp.Net.Cookie.Equals(System.Object)">Equals Method</h3>
@ -818,7 +818,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.Equals(System.Object):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.Equals(System.Object):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Expired">Expired Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Expired">Expired Property</h3>
@ -838,7 +838,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Expired:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Expired:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Expires">Expires Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Expires">Expires Property</h3>
@ -858,7 +858,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Expires:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Expires:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.Cookie.GetHashCode">GetHashCode Method</h3> <h3 id="M:WebSocketSharp.Net.Cookie.GetHashCode">GetHashCode Method</h3>
@ -878,7 +878,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.GetHashCode:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.GetHashCode:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.HttpOnly">HttpOnly Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.HttpOnly">HttpOnly Property</h3>
@ -898,7 +898,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.HttpOnly:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.HttpOnly:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Name">Name Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Name">Name Property</h3>
@ -918,7 +918,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Name:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Name:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Path">Path Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Path">Path Property</h3>
@ -938,7 +938,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Path:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Path:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Port">Port Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Port">Port Property</h3>
@ -958,7 +958,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Port:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Port:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Secure">Secure Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Secure">Secure Property</h3>
@ -978,7 +978,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Secure:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Secure:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.TimeStamp">TimeStamp Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.TimeStamp">TimeStamp Property</h3>
@ -998,7 +998,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.TimeStamp:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.TimeStamp:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.Cookie.ToString">ToString Method</h3> <h3 id="M:WebSocketSharp.Net.Cookie.ToString">ToString Method</h3>
@ -1018,7 +1018,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.ToString:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.Cookie.ToString:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Value">Value Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Value">Value Property</h3>
@ -1038,7 +1038,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Value:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Value:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.Cookie.Version">Version Property</h3> <h3 id="P:WebSocketSharp.Net.Cookie.Version">Version Property</h3>
@ -1058,7 +1058,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Version:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.Cookie.Version:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.CookieCollection:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.CookieCollection:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -431,7 +431,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.CookieCollection:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.CookieCollection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.Cookie)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.Cookie)">Add Method</h3>
@ -458,7 +458,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.Cookie):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.Cookie):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.CookieCollection)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.CookieCollection)">Add Method</h3>
@ -485,7 +485,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.CookieCollection):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.Add(WebSocketSharp.Net.CookieCollection):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieCollection.CopyTo(System.Array,System.Int32)">CopyTo Method</h3> <h3 id="M:WebSocketSharp.Net.CookieCollection.CopyTo(System.Array,System.Int32)">CopyTo Method</h3>
@ -518,7 +518,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.CopyTo(System.Array,System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.CopyTo(System.Array,System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieCollection.CopyTo(WebSocketSharp.Net.Cookie[],System.Int32)">CopyTo Method</h3> <h3 id="M:WebSocketSharp.Net.CookieCollection.CopyTo(WebSocketSharp.Net.Cookie[],System.Int32)">CopyTo Method</h3>
@ -551,7 +551,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.CopyTo(WebSocketSharp.Net.Cookie[],System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.CopyTo(WebSocketSharp.Net.Cookie[],System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.Count">Count Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.Count">Count Property</h3>
@ -571,7 +571,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Count:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Count:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieCollection.GetEnumerator">GetEnumerator Method</h3> <h3 id="M:WebSocketSharp.Net.CookieCollection.GetEnumerator">GetEnumerator Method</h3>
@ -591,7 +591,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.GetEnumerator:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieCollection.GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.IsReadOnly">IsReadOnly Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.IsReadOnly">IsReadOnly Property</h3>
@ -611,7 +611,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.IsReadOnly:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.IsReadOnly:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.IsSynchronized">IsSynchronized Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.IsSynchronized">IsSynchronized Property</h3>
@ -631,7 +631,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.IsSynchronized:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.IsSynchronized:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.Item(System.Int32)">Item Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.Item(System.Int32)">Item Property</h3>
@ -665,7 +665,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Item(System.Int32):Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Item(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.Item(System.String)">Item Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.Item(System.String)">Item Property</h3>
@ -699,7 +699,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Item(System.String):Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.Item(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.CookieCollection.SyncRoot">SyncRoot Property</h3> <h3 id="P:WebSocketSharp.Net.CookieCollection.SyncRoot">SyncRoot Property</h3>
@ -719,7 +719,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.SyncRoot:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.CookieCollection.SyncRoot:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.CookieException:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.CookieException:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -356,7 +356,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.CookieException:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.CookieException:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.CookieException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">CookieException Constructor</h3> <h3 id="C:WebSocketSharp.Net.CookieException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">CookieException Constructor</h3>
@ -389,7 +389,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.CookieException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.CookieException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData Method</h3> <h3 id="M:WebSocketSharp.Net.CookieException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData Method</h3>
@ -422,7 +422,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.CookieException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">System.Runtime.Serialization.ISerializable.GetObjectData Method</h3> <h3 id="M:WebSocketSharp.Net.CookieException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">System.Runtime.Serialization.ISerializable.GetObjectData Method</h3>
@ -456,7 +456,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.CookieException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.CookieException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListener:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListener:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -513,7 +513,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpListener:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpListener:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.Abort">Abort Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.Abort">Abort Method</h3>
@ -529,7 +529,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Abort:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Abort:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes">AuthenticationSchemes Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes">AuthenticationSchemes Property</h3>
@ -549,7 +549,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate">AuthenticationSchemeSelectorDelegate Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate">AuthenticationSchemeSelectorDelegate Property</h3>
@ -569,7 +569,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">BeginGetContext Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">BeginGetContext Method</h3>
@ -606,7 +606,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.Close">Close Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.Close">Close Method</h3>
@ -622,7 +622,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Close:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Close:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)">EndGetContext Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)">EndGetContext Method</h3>
@ -653,7 +653,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.GetContext">GetContext Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.GetContext">GetContext Method</h3>
@ -673,7 +673,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.GetContext:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.GetContext:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.IgnoreWriteExceptions">IgnoreWriteExceptions Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.IgnoreWriteExceptions">IgnoreWriteExceptions Property</h3>
@ -693,7 +693,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IgnoreWriteExceptions:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IgnoreWriteExceptions:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.IsListening">IsListening Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.IsListening">IsListening Property</h3>
@ -713,7 +713,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsListening:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsListening:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.IsSupported">IsSupported Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.IsSupported">IsSupported Property</h3>
@ -733,7 +733,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsSupported:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsSupported:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.Prefixes">Prefixes Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.Prefixes">Prefixes Property</h3>
@ -753,7 +753,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Prefixes:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Prefixes:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.Realm">Realm Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.Realm">Realm Property</h3>
@ -773,7 +773,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Realm:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Realm:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.Start">Start Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.Start">Start Method</h3>
@ -789,7 +789,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Start:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Start:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.Stop">Stop Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.Stop">Stop Method</h3>
@ -805,7 +805,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Stop:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.Stop:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose">System.IDisposable.Dispose Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose">System.IDisposable.Dispose Method</h3>
@ -822,7 +822,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListener.UnsafeConnectionNtlmAuthentication">UnsafeConnectionNtlmAuthentication Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListener.UnsafeConnectionNtlmAuthentication">UnsafeConnectionNtlmAuthentication Property</h3>
@ -842,7 +842,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.UnsafeConnectionNtlmAuthentication:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.UnsafeConnectionNtlmAuthentication:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerContext:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerContext:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -339,7 +339,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Request">Request Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerContext.Request">Request Property</h3>
@ -359,7 +359,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Response">Response Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerContext.Response">Response Property</h3>
@ -379,7 +379,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.User">User Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerContext.User">User Property</h3>
@ -399,7 +399,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerException:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerException:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -368,7 +368,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32)">HttpListenerException Constructor</h3> <h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32)">HttpListenerException Constructor</h3>
@ -395,7 +395,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Int32):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String)">HttpListenerException Constructor</h3> <h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String)">HttpListenerException Constructor</h3>
@ -428,7 +428,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">HttpListenerException Constructor</h3> <h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">HttpListenerException Constructor</h3>
@ -461,7 +461,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode">ErrorCode Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode">ErrorCode Property</h3>
@ -481,7 +481,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerPrefixCollection:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerPrefixCollection:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -427,7 +427,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Add(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Add(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Clear">Clear Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Clear">Clear Method</h3>
@ -443,7 +443,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Clear:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Clear:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Contains(System.String)">Contains Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Contains(System.String)">Contains Method</h3>
@ -474,7 +474,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Contains(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Contains(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.Array,System.Int32)">CopyTo Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.Array,System.Int32)">CopyTo Method</h3>
@ -507,7 +507,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.Array,System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.Array,System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.String[],System.Int32)">CopyTo Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.String[],System.Int32)">CopyTo Method</h3>
@ -540,7 +540,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.String[],System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.CopyTo(System.String[],System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.Count">Count Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.Count">Count Property</h3>
@ -560,7 +560,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.Count:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.Count:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.GetEnumerator">GetEnumerator Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.GetEnumerator">GetEnumerator Method</h3>
@ -580,7 +580,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.GetEnumerator:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsReadOnly">IsReadOnly Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsReadOnly">IsReadOnly Property</h3>
@ -600,7 +600,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsReadOnly:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsReadOnly:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsSynchronized">IsSynchronized Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsSynchronized">IsSynchronized Property</h3>
@ -620,7 +620,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsSynchronized:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerPrefixCollection.IsSynchronized:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Remove(System.String)">Remove Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Remove(System.String)">Remove Method</h3>
@ -651,7 +651,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Remove(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.Remove(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
@ -672,7 +672,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.System#Collections#IEnumerable#GetEnumerator:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerPrefixCollection.System#Collections#IEnumerable#GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerRequest:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerRequest:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -645,7 +645,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.AcceptTypes:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.AcceptTypes:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerRequest.BeginGetClientCertificate(System.AsyncCallback,System.Object)">BeginGetClientCertificate Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerRequest.BeginGetClientCertificate(System.AsyncCallback,System.Object)">BeginGetClientCertificate Method</h3>
@ -682,7 +682,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.BeginGetClientCertificate(System.AsyncCallback,System.Object):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.BeginGetClientCertificate(System.AsyncCallback,System.Object):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ClientCertificateError">ClientCertificateError Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ClientCertificateError">ClientCertificateError Property</h3>
@ -702,7 +702,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ClientCertificateError:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ClientCertificateError:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentEncoding">ContentEncoding Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentEncoding">ContentEncoding Property</h3>
@ -722,7 +722,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentEncoding:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentEncoding:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentLength64">ContentLength64 Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentLength64">ContentLength64 Property</h3>
@ -742,7 +742,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentLength64:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentLength64:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentType">ContentType Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ContentType">ContentType Property</h3>
@ -762,7 +762,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentType:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ContentType:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Cookies">Cookies Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Cookies">Cookies Property</h3>
@ -782,7 +782,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Cookies:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Cookies:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerRequest.EndGetClientCertificate(System.IAsyncResult)">EndGetClientCertificate Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerRequest.EndGetClientCertificate(System.IAsyncResult)">EndGetClientCertificate Method</h3>
@ -813,7 +813,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.EndGetClientCertificate(System.IAsyncResult):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.EndGetClientCertificate(System.IAsyncResult):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerRequest.GetClientCertificate">GetClientCertificate Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerRequest.GetClientCertificate">GetClientCertificate Method</h3>
@ -833,7 +833,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.GetClientCertificate:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerRequest.GetClientCertificate:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.HasEntityBody">HasEntityBody Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.HasEntityBody">HasEntityBody Property</h3>
@ -853,7 +853,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.HasEntityBody:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.HasEntityBody:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Headers">Headers Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Headers">Headers Property</h3>
@ -873,7 +873,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Headers:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Headers:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.HttpMethod">HttpMethod Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.HttpMethod">HttpMethod Property</h3>
@ -893,7 +893,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.HttpMethod:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.HttpMethod:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.InputStream">InputStream Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.InputStream">InputStream Property</h3>
@ -913,7 +913,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.InputStream:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.InputStream:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsAuthenticated">IsAuthenticated Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsAuthenticated">IsAuthenticated Property</h3>
@ -933,7 +933,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsAuthenticated:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsAuthenticated:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsLocal">IsLocal Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsLocal">IsLocal Property</h3>
@ -953,7 +953,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsLocal:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsLocal:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsSecureConnection">IsSecureConnection Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsSecureConnection">IsSecureConnection Property</h3>
@ -973,7 +973,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsSecureConnection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsSecureConnection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsWebSocketRequest">IsWebSocketRequest Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.IsWebSocketRequest">IsWebSocketRequest Property</h3>
@ -993,7 +993,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsWebSocketRequest:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.IsWebSocketRequest:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.KeepAlive">KeepAlive Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.KeepAlive">KeepAlive Property</h3>
@ -1013,7 +1013,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.KeepAlive:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.KeepAlive:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.LocalEndPoint">LocalEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.LocalEndPoint">LocalEndPoint Property</h3>
@ -1033,7 +1033,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.LocalEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.LocalEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ProtocolVersion">ProtocolVersion Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.ProtocolVersion">ProtocolVersion Property</h3>
@ -1053,7 +1053,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ProtocolVersion:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.ProtocolVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.QueryString">QueryString Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.QueryString">QueryString Property</h3>
@ -1073,7 +1073,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.QueryString:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.QueryString:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RawUrl">RawUrl Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RawUrl">RawUrl Property</h3>
@ -1093,7 +1093,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RawUrl:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RawUrl:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RemoteEndPoint">RemoteEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RemoteEndPoint">RemoteEndPoint Property</h3>
@ -1113,7 +1113,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RemoteEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RemoteEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RequestTraceIdentifier">RequestTraceIdentifier Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.RequestTraceIdentifier">RequestTraceIdentifier Property</h3>
@ -1133,7 +1133,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RequestTraceIdentifier:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.RequestTraceIdentifier:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Url">Url Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.Url">Url Property</h3>
@ -1153,7 +1153,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Url:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.Url:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UrlReferrer">UrlReferrer Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UrlReferrer">UrlReferrer Property</h3>
@ -1173,7 +1173,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UrlReferrer:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UrlReferrer:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserAgent">UserAgent Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserAgent">UserAgent Property</h3>
@ -1193,7 +1193,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserAgent:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserAgent:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostAddress">UserHostAddress Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostAddress">UserHostAddress Property</h3>
@ -1213,7 +1213,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostAddress:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostAddress:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostName">UserHostName Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostName">UserHostName Property</h3>
@ -1233,7 +1233,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostName:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserHostName:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserLanguages">UserLanguages Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerRequest.UserLanguages">UserLanguages Property</h3>
@ -1253,7 +1253,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserLanguages:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerRequest.UserLanguages:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerResponse:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerResponse:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -588,7 +588,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Abort:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Abort:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AddHeader(System.String,System.String)">AddHeader Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AddHeader(System.String,System.String)">AddHeader Method</h3>
@ -621,7 +621,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AddHeader(System.String,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AddHeader(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AppendCookie(WebSocketSharp.Net.Cookie)">AppendCookie Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AppendCookie(WebSocketSharp.Net.Cookie)">AppendCookie Method</h3>
@ -648,7 +648,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AppendCookie(WebSocketSharp.Net.Cookie):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AppendCookie(WebSocketSharp.Net.Cookie):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AppendHeader(System.String,System.String)">AppendHeader Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.AppendHeader(System.String,System.String)">AppendHeader Method</h3>
@ -681,7 +681,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AppendHeader(System.String,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.AppendHeader(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Close">Close Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Close">Close Method</h3>
@ -697,7 +697,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Close:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Close:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Close(System.Byte[],System.Boolean)">Close Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Close(System.Byte[],System.Boolean)">Close Method</h3>
@ -730,7 +730,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Close(System.Byte[],System.Boolean):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Close(System.Byte[],System.Boolean):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentEncoding">ContentEncoding Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentEncoding">ContentEncoding Property</h3>
@ -750,7 +750,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentEncoding:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentEncoding:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentLength64">ContentLength64 Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentLength64">ContentLength64 Property</h3>
@ -770,7 +770,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentLength64:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentLength64:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentType">ContentType Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ContentType">ContentType Property</h3>
@ -790,7 +790,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentType:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ContentType:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.Cookies">Cookies Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.Cookies">Cookies Property</h3>
@ -810,7 +810,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.Cookies:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.Cookies:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.CopyFrom(WebSocketSharp.Net.HttpListenerResponse)">CopyFrom Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.CopyFrom(WebSocketSharp.Net.HttpListenerResponse)">CopyFrom Method</h3>
@ -837,7 +837,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.CopyFrom(WebSocketSharp.Net.HttpListenerResponse):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.CopyFrom(WebSocketSharp.Net.HttpListenerResponse):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.Headers">Headers Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.Headers">Headers Property</h3>
@ -857,7 +857,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.Headers:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.Headers:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.KeepAlive">KeepAlive Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.KeepAlive">KeepAlive Property</h3>
@ -877,7 +877,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.KeepAlive:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.KeepAlive:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.OutputStream">OutputStream Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.OutputStream">OutputStream Property</h3>
@ -897,7 +897,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.OutputStream:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.OutputStream:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ProtocolVersion">ProtocolVersion Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.ProtocolVersion">ProtocolVersion Property</h3>
@ -917,7 +917,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ProtocolVersion:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.ProtocolVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Redirect(System.String)">Redirect Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.Redirect(System.String)">Redirect Method</h3>
@ -944,7 +944,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Redirect(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.Redirect(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.RedirectLocation">RedirectLocation Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.RedirectLocation">RedirectLocation Property</h3>
@ -964,7 +964,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.RedirectLocation:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.RedirectLocation:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.SendChunked">SendChunked Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.SendChunked">SendChunked Property</h3>
@ -984,7 +984,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.SendChunked:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.SendChunked:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.SetCookie(WebSocketSharp.Net.Cookie)">SetCookie Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.SetCookie(WebSocketSharp.Net.Cookie)">SetCookie Method</h3>
@ -1011,7 +1011,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.SetCookie(WebSocketSharp.Net.Cookie):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.SetCookie(WebSocketSharp.Net.Cookie):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.StatusCode">StatusCode Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.StatusCode">StatusCode Property</h3>
@ -1031,7 +1031,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.StatusCode:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.StatusCode:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerResponse.StatusDescription">StatusDescription Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerResponse.StatusDescription">StatusDescription Property</h3>
@ -1051,7 +1051,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.StatusDescription:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerResponse.StatusDescription:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.HttpListenerResponse.System#IDisposable#Dispose">System.IDisposable.Dispose Method</h3> <h3 id="M:WebSocketSharp.Net.HttpListenerResponse.System#IDisposable#Dispose">System.IDisposable.Dispose Method</h3>
@ -1068,7 +1068,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.System#IDisposable#Dispose:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerResponse.System#IDisposable#Dispose:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerWebSocketContext:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerWebSocketContext:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -610,7 +610,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.CookieCollection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.CookieCollection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Headers">Headers Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Headers">Headers Property</h3>
@ -630,7 +630,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Headers:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Headers:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsAuthenticated">IsAuthenticated Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsAuthenticated">IsAuthenticated Property</h3>
@ -650,7 +650,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsAuthenticated:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsAuthenticated:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsLocal">IsLocal Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsLocal">IsLocal Property</h3>
@ -670,7 +670,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsLocal:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsLocal:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsSecureConnection">IsSecureConnection Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsSecureConnection">IsSecureConnection Property</h3>
@ -690,7 +690,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsSecureConnection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.IsSecureConnection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Origin">Origin Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Origin">Origin Property</h3>
@ -710,7 +710,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Origin:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Origin:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Path">Path Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Path">Path Property</h3>
@ -730,7 +730,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Path:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.Path:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.RequestUri">RequestUri Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.RequestUri">RequestUri Property</h3>
@ -750,7 +750,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.RequestUri:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.RequestUri:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3>
@ -770,7 +770,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketKey:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketKey:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3>
@ -790,7 +790,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketProtocols:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketProtocols:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3>
@ -810,7 +810,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketVersion:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.SecWebSocketVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.ServerEndPoint">ServerEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.ServerEndPoint">ServerEndPoint Property</h3>
@ -830,7 +830,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.ServerEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.ServerEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.User">User Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.User">User Property</h3>
@ -850,7 +850,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.User:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.User:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.UserEndPoint">UserEndPoint Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.UserEndPoint">UserEndPoint Property</h3>
@ -870,7 +870,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.UserEndPoint:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.UserEndPoint:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.WebSocket">WebSocket Property</h3> <h3 id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.WebSocket">WebSocket Property</h3>
@ -890,7 +890,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.WebSocket:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerWebSocketContext.WebSocket:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -597,7 +597,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpStatusCode:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpStatusCode:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
</div> </div>
<div class="Members" id="T:WebSocketSharp.Net.HttpStatusCode:Members"> <div class="Members" id="T:WebSocketSharp.Net.HttpStatusCode:Members">
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpVersion:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.HttpVersion:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -332,7 +332,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.HttpVersion:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.HttpVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="F:WebSocketSharp.Net.HttpVersion.Version10">Version10 Field</h3> <h3 id="F:WebSocketSharp.Net.HttpVersion.Version10">Version10 Field</h3>
@ -348,7 +348,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="F:WebSocketSharp.Net.HttpVersion.Version10:Version Information"> <div class="SectionBox" id="F:WebSocketSharp.Net.HttpVersion.Version10:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="F:WebSocketSharp.Net.HttpVersion.Version11">Version11 Field</h3> <h3 id="F:WebSocketSharp.Net.HttpVersion.Version11">Version11 Field</h3>
@ -364,7 +364,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="F:WebSocketSharp.Net.HttpVersion.Version11:Version Information"> <div class="SectionBox" id="F:WebSocketSharp.Net.HttpVersion.Version11:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.WebHeaderCollection:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.WebHeaderCollection:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -677,7 +677,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">WebHeaderCollection Constructor</h3> <h3 id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">WebHeaderCollection Constructor</h3>
@ -710,7 +710,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String)">Add Method</h3>
@ -737,7 +737,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String)">Add Method</h3>
@ -770,7 +770,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String)">Add Method</h3>
@ -803,7 +803,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String,System.String)">Add Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String,System.String)">Add Method</h3>
@ -836,7 +836,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.AddWithoutValidate(System.String,System.String)">AddWithoutValidate Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.AddWithoutValidate(System.String,System.String)">AddWithoutValidate Method</h3>
@ -869,7 +869,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.AddWithoutValidate(System.String,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.AddWithoutValidate(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebHeaderCollection.AllKeys">AllKeys Property</h3> <h3 id="P:WebSocketSharp.Net.WebHeaderCollection.AllKeys">AllKeys Property</h3>
@ -889,7 +889,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.AllKeys:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.AllKeys:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Clear">Clear Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Clear">Clear Method</h3>
@ -905,7 +905,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Clear:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Clear:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Count">Count Property</h3> <h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Count">Count Property</h3>
@ -925,7 +925,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Count:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Count:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.Int32)">Get Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.Int32)">Get Method</h3>
@ -956,7 +956,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.String)">Get Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.String)">Get Method</h3>
@ -987,7 +987,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Get(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetEnumerator">GetEnumerator Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetEnumerator">GetEnumerator Method</h3>
@ -1007,7 +1007,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetEnumerator:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetEnumerator:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetKey(System.Int32)">GetKey Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetKey(System.Int32)">GetKey Method</h3>
@ -1038,7 +1038,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetKey(System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetKey(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData Method</h3>
@ -1071,7 +1071,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.Int32)">GetValues Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.Int32)">GetValues Method</h3>
@ -1102,7 +1102,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.Int32):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.String)">GetValues Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.String)">GetValues Method</h3>
@ -1133,7 +1133,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetValues(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String)">IsRestricted Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String)">IsRestricted Method</h3>
@ -1164,7 +1164,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String,System.Boolean)">IsRestricted Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String,System.Boolean)">IsRestricted Method</h3>
@ -1201,7 +1201,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String,System.Boolean):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.IsRestricted(System.String,System.Boolean):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader)">Item Property</h3> <h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader)">Item Property</h3>
@ -1235,7 +1235,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader):Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader)">Item Property</h3> <h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader)">Item Property</h3>
@ -1269,7 +1269,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader):Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Keys">Keys Property</h3> <h3 id="P:WebSocketSharp.Net.WebHeaderCollection.Keys">Keys Property</h3>
@ -1289,7 +1289,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Keys:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Keys:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.OnDeserialization(System.Object)">OnDeserialization Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.OnDeserialization(System.Object)">OnDeserialization Method</h3>
@ -1316,7 +1316,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.OnDeserialization(System.Object):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.OnDeserialization(System.Object):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader)">Remove Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader)">Remove Method</h3>
@ -1343,7 +1343,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader)">Remove Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader)">Remove Method</h3>
@ -1370,7 +1370,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.String)">Remove Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.String)">Remove Method</h3>
@ -1397,7 +1397,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String)">Set Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String)">Set Method</h3>
@ -1430,7 +1430,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String)">Set Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String)">Set Method</h3>
@ -1463,7 +1463,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.String,System.String)">Set Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.String,System.String)">Set Method</h3>
@ -1496,7 +1496,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.String,System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.String,System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">System.Runtime.Serialization.ISerializable.GetObjectData Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">System.Runtime.Serialization.ISerializable.GetObjectData Method</h3>
@ -1530,7 +1530,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.ToByteArray">ToByteArray Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.ToByteArray">ToByteArray Method</h3>
@ -1550,7 +1550,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.ToByteArray:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.ToByteArray:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.ToString">ToString Method</h3> <h3 id="M:WebSocketSharp.Net.WebHeaderCollection.ToString">ToString Method</h3>
@ -1570,7 +1570,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.ToString:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.ToString:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.WebSocketContext:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Net.WebSocketContext:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -448,7 +448,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.WebSocketContext:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Net.WebSocketContext:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.CookieCollection">CookieCollection Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.CookieCollection">CookieCollection Property</h3>
@ -468,7 +468,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.CookieCollection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.CookieCollection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.Headers">Headers Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.Headers">Headers Property</h3>
@ -488,7 +488,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.Headers:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.Headers:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.IsAuthenticated">IsAuthenticated Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.IsAuthenticated">IsAuthenticated Property</h3>
@ -508,7 +508,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsAuthenticated:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsAuthenticated:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.IsLocal">IsLocal Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.IsLocal">IsLocal Property</h3>
@ -528,7 +528,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsLocal:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsLocal:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.IsSecureConnection">IsSecureConnection Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.IsSecureConnection">IsSecureConnection Property</h3>
@ -548,7 +548,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsSecureConnection:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.IsSecureConnection:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.Origin">Origin Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.Origin">Origin Property</h3>
@ -568,7 +568,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.Origin:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.Origin:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.RequestUri">RequestUri Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.RequestUri">RequestUri Property</h3>
@ -588,7 +588,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.RequestUri:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.RequestUri:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketKey">SecWebSocketKey Property</h3>
@ -608,7 +608,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketKey:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketKey:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketProtocols">SecWebSocketProtocols Property</h3>
@ -628,7 +628,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketProtocols:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketProtocols:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketVersion">SecWebSocketVersion Property</h3>
@ -648,7 +648,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketVersion:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.SecWebSocketVersion:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.User">User Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.User">User Property</h3>
@ -668,7 +668,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.User:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.User:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Net.WebSocketContext.WebSocket">WebSocket Property</h3> <h3 id="P:WebSocketSharp.Net.WebSocketContext.WebSocket">WebSocket Property</h3>
@ -688,7 +688,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.WebSocket:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Net.WebSocketContext.WebSocket:Version Information">
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Server.HttpServer:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Server.HttpServer:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -552,7 +552,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Server.HttpServer:Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Server.HttpServer:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="C:WebSocketSharp.Server.HttpServer(System.Int32)">HttpServer Constructor</h3> <h3 id="C:WebSocketSharp.Server.HttpServer(System.Int32)">HttpServer Constructor</h3>
@ -579,7 +579,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Server.HttpServer(System.Int32):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Server.HttpServer(System.Int32):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String)">AddService&lt;T&gt; Generic Method</h3> <h3 id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String)">AddService&lt;T&gt; Generic Method</h3>
@ -617,7 +617,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.HttpServer.GetFile(System.String)">GetFile Method</h3> <h3 id="M:WebSocketSharp.Server.HttpServer.GetFile(System.String)">GetFile Method</h3>
@ -648,7 +648,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.GetFile(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.GetFile(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnConnect">OnConnect Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnConnect">OnConnect Event</h3>
@ -664,7 +664,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnConnect:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnConnect:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnDelete">OnDelete Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnDelete">OnDelete Event</h3>
@ -680,7 +680,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnDelete:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnDelete:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnError">OnError Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnError">OnError Event</h3>
@ -696,7 +696,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnError:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnError:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnGet">OnGet Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnGet">OnGet Event</h3>
@ -712,7 +712,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnGet:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnGet:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnHead">OnHead Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnHead">OnHead Event</h3>
@ -728,7 +728,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnHead:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnHead:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnOptions">OnOptions Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnOptions">OnOptions Event</h3>
@ -744,7 +744,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnOptions:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnOptions:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnPatch">OnPatch Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnPatch">OnPatch Event</h3>
@ -760,7 +760,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPatch:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPatch:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnPost">OnPost Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnPost">OnPost Event</h3>
@ -776,7 +776,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPost:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPost:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnPut">OnPut Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnPut">OnPut Event</h3>
@ -792,7 +792,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPut:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnPut:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="E:WebSocketSharp.Server.HttpServer.OnTrace">OnTrace Event</h3> <h3 id="E:WebSocketSharp.Server.HttpServer.OnTrace">OnTrace Event</h3>
@ -808,7 +808,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnTrace:Version Information"> <div class="SectionBox" id="E:WebSocketSharp.Server.HttpServer.OnTrace:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.HttpServer.Port">Port Property</h3> <h3 id="P:WebSocketSharp.Server.HttpServer.Port">Port Property</h3>
@ -828,7 +828,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.Port:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.Port:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.HttpServer.ServicePath">ServicePath Property</h3> <h3 id="P:WebSocketSharp.Server.HttpServer.ServicePath">ServicePath Property</h3>
@ -848,7 +848,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.ServicePath:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.ServicePath:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.HttpServer.Start">Start Method</h3> <h3 id="M:WebSocketSharp.Server.HttpServer.Start">Start Method</h3>
@ -864,7 +864,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.Start:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.Start:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.HttpServer.Stop">Stop Method</h3> <h3 id="M:WebSocketSharp.Server.HttpServer.Stop">Stop Method</h3>
@ -880,7 +880,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.Stop:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.HttpServer.Stop:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.HttpServer.Sweeped">Sweeped Property</h3> <h3 id="P:WebSocketSharp.Server.HttpServer.Sweeped">Sweeped Property</h3>
@ -900,7 +900,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.Sweeped:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.HttpServer.Sweeped:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -219,7 +219,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Server.IServiceHost:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Server.IServiceHost:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<h2 class="Section">Public Properties</h2> <h2 class="Section">Public Properties</h2>
@ -360,7 +360,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.BindWebSocket(WebSocketSharp.WebSocket):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.BindWebSocket(WebSocketSharp.WebSocket):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.IServiceHost.Broadcast(System.String)">Broadcast Method</h3> <h3 id="M:WebSocketSharp.Server.IServiceHost.Broadcast(System.String)">Broadcast Method</h3>
@ -387,7 +387,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Broadcast(System.String):Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Broadcast(System.String):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.IServiceHost.Start">Start Method</h3> <h3 id="M:WebSocketSharp.Server.IServiceHost.Start">Start Method</h3>
@ -403,7 +403,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Start:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Start:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="M:WebSocketSharp.Server.IServiceHost.Stop">Stop Method</h3> <h3 id="M:WebSocketSharp.Server.IServiceHost.Stop">Stop Method</h3>
@ -419,7 +419,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Stop:Version Information"> <div class="SectionBox" id="M:WebSocketSharp.Server.IServiceHost.Stop:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.IServiceHost.Sweeped">Sweeped Property</h3> <h3 id="P:WebSocketSharp.Server.IServiceHost.Sweeped">Sweeped Property</h3>
@ -439,7 +439,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.IServiceHost.Sweeped:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.IServiceHost.Sweeped:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

View File

@ -220,7 +220,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="T:WebSocketSharp.Server.ResponseEventArgs:Docs:Version Information"> <div class="SectionBox" id="T:WebSocketSharp.Server.ResponseEventArgs:Docs:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<h2 class="Section" id="Members">Members</h2> <h2 class="Section" id="Members">Members</h2>
<div class="SectionBox" id="_Members"> <div class="SectionBox" id="_Members">
<p> <p>
@ -339,7 +339,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="C:WebSocketSharp.Server.ResponseEventArgs(WebSocketSharp.Net.HttpListenerContext):Version Information"> <div class="SectionBox" id="C:WebSocketSharp.Server.ResponseEventArgs(WebSocketSharp.Net.HttpListenerContext):Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.ResponseEventArgs.Request">Request Property</h3> <h3 id="P:WebSocketSharp.Server.ResponseEventArgs.Request">Request Property</h3>
@ -359,7 +359,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.ResponseEventArgs.Request:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.ResponseEventArgs.Request:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
<h3 id="P:WebSocketSharp.Server.ResponseEventArgs.Response">Response Property</h3> <h3 id="P:WebSocketSharp.Server.ResponseEventArgs.Response">Response Property</h3>
@ -379,7 +379,7 @@
</div> </div>
<h2 class="Section">Requirements</h2> <h2 class="Section">Requirements</h2>
<div class="SectionBox" id="P:WebSocketSharp.Server.ResponseEventArgs.Response:Version Information"> <div class="SectionBox" id="P:WebSocketSharp.Server.ResponseEventArgs.Response:Version Information">
<b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div> <b>Namespace: </b>WebSocketSharp.Server<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.27062</div>
<hr size="1" /> <hr size="1" />
</blockquote> </blockquote>
</div> </div>

Some files were not shown because too many files have changed in this diff Show More