Fixed WebSocket.cs
This commit is contained in:
parent
46f8088af3
commit
86b80270c6
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.
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.
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.
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
|||||||
<Properties>
|
<Properties>
|
||||||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Ubuntu" />
|
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug_Ubuntu" />
|
||||||
<MonoDevelop.Ide.Workbench />
|
<MonoDevelop.Ide.Workbench />
|
||||||
<MonoDevelop.Ide.DebuggingService.Breakpoints>
|
<MonoDevelop.Ide.DebuggingService.Breakpoints>
|
||||||
<BreakpointStore />
|
<BreakpointStore />
|
||||||
|
@ -65,26 +65,24 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
#region Private Fields
|
#region Private Fields
|
||||||
|
|
||||||
private string _base64key;
|
private string _base64key;
|
||||||
private HttpListenerContext _httpContext;
|
private HttpListenerContext _httpContext;
|
||||||
private WebSocketContext _context;
|
private WebSocketContext _context;
|
||||||
private System.Net.IPEndPoint _endPoint;
|
private System.Net.IPEndPoint _endPoint;
|
||||||
private string _extensions;
|
private string _extensions;
|
||||||
private AutoResetEvent _exitMessageLoop;
|
private AutoResetEvent _exitMessageLoop;
|
||||||
private Object _forClose;
|
private Object _forClose;
|
||||||
private Object _forSend;
|
private Object _forSend;
|
||||||
private bool _isClient;
|
private bool _isClient;
|
||||||
private bool _isSecure;
|
private bool _isSecure;
|
||||||
private string _protocol;
|
private string _protocol;
|
||||||
private string _protocols;
|
private string _protocols;
|
||||||
private NameValueCollection _queryString;
|
private NameValueCollection _queryString;
|
||||||
private volatile WsState _readyState;
|
private volatile WsState _readyState;
|
||||||
private AutoResetEvent _receivePong;
|
private AutoResetEvent _receivePong;
|
||||||
private TcpClient _tcpClient;
|
private TcpClient _tcpClient;
|
||||||
private List<byte> _unsentBuffer;
|
private Uri _uri;
|
||||||
private volatile uint _unsentCount;
|
private WsStream _wsStream;
|
||||||
private Uri _uri;
|
|
||||||
private WsStream _wsStream;
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@ -92,13 +90,11 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
private WebSocket()
|
private WebSocket()
|
||||||
{
|
{
|
||||||
_extensions = String.Empty;
|
_extensions = String.Empty;
|
||||||
_forClose = new Object();
|
_forClose = new Object();
|
||||||
_forSend = new Object();
|
_forSend = new Object();
|
||||||
_protocol = String.Empty;
|
_protocol = String.Empty;
|
||||||
_readyState = WsState.CONNECTING;
|
_readyState = WsState.CONNECTING;
|
||||||
_unsentBuffer = new List<byte>();
|
|
||||||
_unsentCount = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@ -288,41 +284,16 @@ namespace WebSocketSharp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the buffer that contains unsent WebSocket frames.
|
/// Gets the WebSocket URL.
|
||||||
/// </summary>
|
|
||||||
/// <value>
|
|
||||||
/// An array of <see cref="byte"/> that contains unsent WebSocket frames.
|
|
||||||
/// </value>
|
|
||||||
public byte[] UnsentBuffer {
|
|
||||||
get {
|
|
||||||
lock (((ICollection)_unsentBuffer).SyncRoot)
|
|
||||||
{
|
|
||||||
return _unsentBuffer.ToArray();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the count of unsent WebSocket frames.
|
|
||||||
/// </summary>
|
|
||||||
/// <value>
|
|
||||||
/// A <see cref="uint"/> that contains the count of unsent WebSocket frames.
|
|
||||||
/// </value>
|
|
||||||
public uint UnsentCount {
|
|
||||||
get {
|
|
||||||
return _unsentCount;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the WebSocket URL.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// A <see cref="Uri"/> that contains the WebSocket URL.
|
/// A <see cref="Uri"/> that contains the WebSocket URL.
|
||||||
/// </value>
|
/// </value>
|
||||||
public Uri Url {
|
public Uri Url {
|
||||||
get { return _uri; }
|
get {
|
||||||
set {
|
return _uri;
|
||||||
|
}
|
||||||
|
internal set {
|
||||||
if (_readyState == WsState.CONNECTING && !_isClient)
|
if (_readyState == WsState.CONNECTING && !_isClient)
|
||||||
_uri = value;
|
_uri = value;
|
||||||
}
|
}
|
||||||
@ -941,22 +912,15 @@ namespace WebSocketSharp {
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (_unsentCount == 0 && !_wsStream.IsNull())
|
if (_wsStream.IsNull())
|
||||||
{
|
return false;
|
||||||
_wsStream.WriteFrame(frame);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsend(frame);
|
_wsStream.WriteFrame(frame);
|
||||||
onError("Current data can not be sent because there is unsent data.");
|
return true;
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
unsend(frame);
|
|
||||||
onError(ex.Message);
|
onError(ex.Message);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1037,23 +1001,33 @@ namespace WebSocketSharp {
|
|||||||
var rem = length % _fragmentLen;
|
var rem = length % _fragmentLen;
|
||||||
var count = rem == 0 ? quo - 2 : quo - 1;
|
var count = rem == 0 ? quo - 2 : quo - 1;
|
||||||
|
|
||||||
// First
|
long readLen = 0;
|
||||||
|
var tmpLen = 0;
|
||||||
var buffer = new byte[_fragmentLen];
|
var buffer = new byte[_fragmentLen];
|
||||||
long readLen = stream.Read(buffer, 0, _fragmentLen);
|
|
||||||
send(Fin.MORE, opcode, buffer);
|
// First
|
||||||
|
tmpLen = stream.Read(buffer, 0, _fragmentLen);
|
||||||
|
if (send(Fin.MORE, opcode, buffer))
|
||||||
|
readLen += tmpLen;
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
|
|
||||||
// Mid
|
// Mid
|
||||||
count.Times(() =>
|
for (long i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
readLen += stream.Read(buffer, 0, _fragmentLen);
|
tmpLen = stream.Read(buffer, 0, _fragmentLen);
|
||||||
send(Fin.MORE, Opcode.CONT, buffer);
|
if (send(Fin.MORE, Opcode.CONT, buffer))
|
||||||
});
|
readLen += tmpLen;
|
||||||
|
else
|
||||||
|
return readLen;
|
||||||
|
}
|
||||||
|
|
||||||
// Final
|
// Final
|
||||||
if (rem != 0)
|
if (rem != 0)
|
||||||
buffer = new byte[rem];
|
buffer = new byte[rem];
|
||||||
readLen += stream.Read(buffer, 0, buffer.Length);
|
tmpLen = stream.Read(buffer, 0, buffer.Length);
|
||||||
send(Fin.FINAL, Opcode.CONT, buffer);
|
if (send(Fin.FINAL, Opcode.CONT, buffer))
|
||||||
|
readLen += tmpLen;
|
||||||
|
|
||||||
return readLen;
|
return readLen;
|
||||||
}
|
}
|
||||||
@ -1135,15 +1109,6 @@ namespace WebSocketSharp {
|
|||||||
return uriString.TryCreateWebSocketUri(out result, out message);
|
return uriString.TryCreateWebSocketUri(out result, out message);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void unsend(WsFrame frame)
|
|
||||||
{
|
|
||||||
lock (((ICollection)_unsentBuffer).SyncRoot)
|
|
||||||
{
|
|
||||||
_unsentCount++;
|
|
||||||
_unsentBuffer.AddRange(frame.ToBytes());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void writeHandshake(Handshake handshake)
|
private void writeHandshake(Handshake handshake)
|
||||||
{
|
{
|
||||||
_wsStream.WriteHandshake(handshake);
|
_wsStream.WriteHandshake(handshake);
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1053,25 +1053,9 @@
|
|||||||
One of the <see cref="T:WebSocketSharp.WsState" />. By default, <c>WsState.CONNECTING</c>.
|
One of the <see cref="T:WebSocketSharp.WsState" />. By default, <c>WsState.CONNECTING</c>.
|
||||||
</value>
|
</value>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:WebSocketSharp.WebSocket.UnsentBuffer">
|
|
||||||
<summary>
|
|
||||||
Gets the buffer that contains unsent WebSocket frames.
|
|
||||||
</summary>
|
|
||||||
<value>
|
|
||||||
An array of <see cref="T:System.Byte" /> that contains unsent WebSocket frames.
|
|
||||||
</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:WebSocketSharp.WebSocket.UnsentCount">
|
|
||||||
<summary>
|
|
||||||
Gets the count of unsent WebSocket frames.
|
|
||||||
</summary>
|
|
||||||
<value>
|
|
||||||
A <see cref="T:System.UInt32" /> that contains the count of unsent WebSocket frames.
|
|
||||||
</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:WebSocketSharp.WebSocket.Url">
|
<member name="P:WebSocketSharp.WebSocket.Url">
|
||||||
<summary>
|
<summary>
|
||||||
Gets or sets the WebSocket URL.
|
Gets the WebSocket URL.
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
A <see cref="T:System.Uri" /> that contains the WebSocket URL.
|
A <see cref="T:System.Uri" /> that contains the WebSocket URL.
|
||||||
|
@ -350,7 +350,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.CloseStatusCode:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Frame.CloseStatusCode: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.36581</div>
|
<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>
|
||||||
<div class="Members" id="T:WebSocketSharp.Frame.CloseStatusCode:Members">
|
<div class="Members" id="T:WebSocketSharp.Frame.CloseStatusCode:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.Fin:Docs:Version Information">
|
<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.36581</div>
|
<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>
|
||||||
<div class="Members" id="T:WebSocketSharp.Frame.Fin:Members">
|
<div class="Members" id="T:WebSocketSharp.Frame.Fin:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.Mask:Docs:Version Information">
|
<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.36581</div>
|
<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>
|
||||||
<div class="Members" id="T:WebSocketSharp.Frame.Mask:Members">
|
<div class="Members" id="T:WebSocketSharp.Frame.Mask:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -278,7 +278,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.Opcode:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Frame.Opcode: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.36581</div>
|
<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>
|
||||||
<div class="Members" id="T:WebSocketSharp.Frame.Opcode:Members">
|
<div class="Members" id="T:WebSocketSharp.Frame.Opcode:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.PayloadData:Docs:Version Information">
|
<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.36581</div>
|
<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -509,7 +509,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[]):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.String)">PayloadData Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.String)">PayloadData Constructor</h3>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.String):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean)">PayloadData Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean)">PayloadData Constructor</h3>
|
||||||
@ -569,7 +569,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Boolean):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[])">PayloadData Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[])">PayloadData Constructor</h3>
|
||||||
@ -602,7 +602,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[]):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean)">PayloadData Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean)">PayloadData Constructor</h3>
|
||||||
@ -641,7 +641,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.PayloadData(System.Byte[],System.Byte[],System.Boolean):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.PayloadData.ApplicationData">ApplicationData Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.PayloadData.ApplicationData">ApplicationData Property</h3>
|
||||||
@ -661,7 +661,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ApplicationData:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.PayloadData.ExtensionData">ExtensionData Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.PayloadData.ExtensionData">ExtensionData Property</h3>
|
||||||
@ -681,7 +681,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.ExtensionData:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator">GetEnumerator Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator">GetEnumerator Method</h3>
|
||||||
@ -701,7 +701,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.GetEnumerator:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.PayloadData.IsMasked">IsMasked Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.PayloadData.IsMasked">IsMasked Property</h3>
|
||||||
@ -721,7 +721,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.IsMasked:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.PayloadData.Length">Length Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.PayloadData.Length">Length Property</h3>
|
||||||
@ -741,7 +741,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.PayloadData.Length:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[])">Mask Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[])">Mask Method</h3>
|
||||||
@ -768,7 +768,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.Mask(System.Byte[]):Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="F:WebSocketSharp.Frame.PayloadData.MaxLength">MaxLength Field</h3>
|
<h3 id="F:WebSocketSharp.Frame.PayloadData.MaxLength">MaxLength Field</h3>
|
||||||
@ -786,7 +786,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="F:WebSocketSharp.Frame.PayloadData.MaxLength:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
|
||||||
@ -807,7 +807,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.System#Collections#IEnumerable#GetEnumerator:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToBytes">ToBytes Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToBytes">ToBytes Method</h3>
|
||||||
@ -827,7 +827,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToBytes:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToString">ToString Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.PayloadData.ToString">ToString Method</h3>
|
||||||
@ -847,7 +847,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.PayloadData.ToString:Version Information">
|
<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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -251,7 +251,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.Rsv:Docs:Version Information">
|
<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.36581</div>
|
<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>
|
||||||
<div class="Members" id="T:WebSocketSharp.Frame.Rsv:Members">
|
<div class="Members" id="T:WebSocketSharp.Frame.Rsv:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Frame.WsFrame:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Frame.WsFrame: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.36581</div>
|
<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -614,7 +614,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData)">WsFrame Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData)">WsFrame Constructor</h3>
|
||||||
@ -653,7 +653,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.PayloadData):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.Mask,WebSocketSharp.Frame.PayloadData)">WsFrame Constructor</h3>
|
<h3 id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.Mask,WebSocketSharp.Frame.PayloadData)">WsFrame Constructor</h3>
|
||||||
@ -698,7 +698,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.Mask,WebSocketSharp.Frame.PayloadData):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Frame.WsFrame(WebSocketSharp.Frame.Fin,WebSocketSharp.Frame.Opcode,WebSocketSharp.Frame.Mask,WebSocketSharp.Frame.PayloadData):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.ExtPayloadLen">ExtPayloadLen Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.ExtPayloadLen">ExtPayloadLen Property</h3>
|
||||||
@ -718,7 +718,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.ExtPayloadLen:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.ExtPayloadLen: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Fin">Fin Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Fin">Fin Property</h3>
|
||||||
@ -738,7 +738,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Fin:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Fin: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.GetEnumerator">GetEnumerator Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.GetEnumerator">GetEnumerator Method</h3>
|
||||||
@ -758,7 +758,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.GetEnumerator:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Length">Length Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Length">Length Property</h3>
|
||||||
@ -778,7 +778,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Length:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Masked">Masked Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Masked">Masked Property</h3>
|
||||||
@ -798,7 +798,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Masked:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Masked: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.MaskingKey">MaskingKey Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.MaskingKey">MaskingKey Property</h3>
|
||||||
@ -818,7 +818,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.MaskingKey:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.MaskingKey: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Opcode">Opcode Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Opcode">Opcode Property</h3>
|
||||||
@ -838,7 +838,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Opcode:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Opcode: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[])">Parse Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[])">Parse Method</h3>
|
||||||
@ -869,7 +869,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream)">Parse Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream)">Parse Method</h3>
|
||||||
@ -900,7 +900,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[],System.Boolean)">Parse Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[],System.Boolean)">Parse Method</h3>
|
||||||
@ -937,7 +937,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.Byte[],System.Boolean):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream,System.Boolean)">Parse Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream,System.Boolean)">Parse Method</h3>
|
||||||
@ -974,7 +974,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream,System.Boolean):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Parse(System.IO.Stream,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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Action{WebSocketSharp.Frame.WsFrame})">ParseAsync Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Action{WebSocketSharp.Frame.WsFrame})">ParseAsync Method</h3>
|
||||||
@ -1007,7 +1007,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Action{WebSocketSharp.Frame.WsFrame}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Action{WebSocketSharp.Frame.WsFrame}):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Boolean,System.Action{WebSocketSharp.Frame.WsFrame})">ParseAsync Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Boolean,System.Action{WebSocketSharp.Frame.WsFrame})">ParseAsync Method</h3>
|
||||||
@ -1046,7 +1046,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Boolean,System.Action{WebSocketSharp.Frame.WsFrame}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ParseAsync(System.IO.Stream,System.Boolean,System.Action{WebSocketSharp.Frame.WsFrame}):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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadData">PayloadData Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadData">PayloadData Property</h3>
|
||||||
@ -1066,7 +1066,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadData:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadData: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadLen">PayloadLen Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadLen">PayloadLen Property</h3>
|
||||||
@ -1086,7 +1086,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadLen:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadLen: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadLength">PayloadLength Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.PayloadLength">PayloadLength Property</h3>
|
||||||
@ -1106,7 +1106,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadLength:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.PayloadLength: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.Print">Print Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.Print">Print Method</h3>
|
||||||
@ -1122,7 +1122,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Print:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.Print: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv1">Rsv1 Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv1">Rsv1 Property</h3>
|
||||||
@ -1142,7 +1142,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv1:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv1: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv2">Rsv2 Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv2">Rsv2 Property</h3>
|
||||||
@ -1162,7 +1162,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv2:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv2: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv3">Rsv3 Property</h3>
|
<h3 id="P:WebSocketSharp.Frame.WsFrame.Rsv3">Rsv3 Property</h3>
|
||||||
@ -1182,7 +1182,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv3:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Frame.WsFrame.Rsv3: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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.System#Collections#IEnumerable#GetEnumerator">System.Collections.IEnumerable.GetEnumerator Method</h3>
|
||||||
@ -1203,7 +1203,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.System#Collections#IEnumerable#GetEnumerator:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.ToBytes">ToBytes Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.ToBytes">ToBytes Method</h3>
|
||||||
@ -1223,7 +1223,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ToBytes:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Frame.WsFrame.ToString">ToString Method</h3>
|
<h3 id="M:WebSocketSharp.Frame.WsFrame.ToString">ToString Method</h3>
|
||||||
@ -1243,7 +1243,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.ToString:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Frame.WsFrame.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.36581</div>
|
<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" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</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.36581</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.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Members">
|
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemes:Members">
|
<div class="Members" id="T:WebSocketSharp.Net.AuthenticationSchemes:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<div class="Members" id="T:WebSocketSharp.Net.HttpStatusCode:Members">
|
<div class="Members" id="T:WebSocketSharp.Net.HttpStatusCode:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String)">AddService<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Server.HttpServer.AddService``1(System.String)">AddService<T> 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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.ServiceManager:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.ServiceManager: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -402,7 +402,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.ServiceManager:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.ServiceManager: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.ServiceManager.Add(System.String,WebSocketSharp.Server.IServiceHost)">Add Method</h3>
|
<h3 id="M:WebSocketSharp.Server.ServiceManager.Add(System.String,WebSocketSharp.Server.IServiceHost)">Add Method</h3>
|
||||||
@ -435,7 +435,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.Add(System.String,WebSocketSharp.Server.IServiceHost):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.Add(System.String,WebSocketSharp.Server.IServiceHost):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.ServiceManager.Broadcast(System.String)">Broadcast Method</h3>
|
<h3 id="M:WebSocketSharp.Server.ServiceManager.Broadcast(System.String)">Broadcast Method</h3>
|
||||||
@ -462,7 +462,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.Broadcast(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.ServiceManager.Count">Count Property</h3>
|
<h3 id="P:WebSocketSharp.Server.ServiceManager.Count">Count Property</h3>
|
||||||
@ -482,7 +482,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.Count:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.Count: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.ServiceManager.Path">Path Property</h3>
|
<h3 id="P:WebSocketSharp.Server.ServiceManager.Path">Path Property</h3>
|
||||||
@ -502,7 +502,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.Path:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.Path: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.ServiceManager.ServiceHost">ServiceHost Property</h3>
|
<h3 id="P:WebSocketSharp.Server.ServiceManager.ServiceHost">ServiceHost Property</h3>
|
||||||
@ -522,7 +522,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.ServiceHost:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.ServiceHost: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.ServiceManager.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.ServiceManager.Stop">Stop Method</h3>
|
||||||
@ -538,7 +538,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.ServiceManager.Sweeped">Sweeped Property</h3>
|
<h3 id="P:WebSocketSharp.Server.ServiceManager.Sweeped">Sweeped Property</h3>
|
||||||
@ -558,7 +558,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.Sweeped:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.ServiceManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.ServiceManager.TryGetServiceHost(System.String,WebSocketSharp.Server.IServiceHost@)">TryGetServiceHost Method</h3>
|
<h3 id="M:WebSocketSharp.Server.ServiceManager.TryGetServiceHost(System.String,WebSocketSharp.Server.IServiceHost@)">TryGetServiceHost Method</h3>
|
||||||
@ -595,7 +595,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.TryGetServiceHost(System.String,WebSocketSharp.Server.IServiceHost@):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.ServiceManager.TryGetServiceHost(System.String,WebSocketSharp.Server.IServiceHost@):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.SessionManager:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.SessionManager: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -476,7 +476,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.SessionManager:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.SessionManager: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.ActiveID">ActiveID Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.ActiveID">ActiveID Property</h3>
|
||||||
@ -496,7 +496,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.ActiveID:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.ActiveID: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Add(WebSocketSharp.Server.WebSocketService)">Add Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Add(WebSocketSharp.Server.WebSocketService)">Add Method</h3>
|
||||||
@ -527,7 +527,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Add(WebSocketSharp.Server.WebSocketService):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Add(WebSocketSharp.Server.WebSocketService):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.Byte[])">Broadcast Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.Byte[])">Broadcast Method</h3>
|
||||||
@ -554,7 +554,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.Byte[]):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.String)">Broadcast Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.String)">Broadcast Method</h3>
|
||||||
@ -581,7 +581,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Broadcast(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadping(System.String)">Broadping Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Broadping(System.String)">Broadping Method</h3>
|
||||||
@ -612,7 +612,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Broadping(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Broadping(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.Count">Count Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.Count">Count Property</h3>
|
||||||
@ -632,7 +632,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.Count:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.Count: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.ID">ID Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.ID">ID Property</h3>
|
||||||
@ -652,7 +652,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.ID:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.ID: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.InactiveID">InactiveID Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.InactiveID">InactiveID Property</h3>
|
||||||
@ -672,7 +672,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.InactiveID:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.InactiveID: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Remove(System.String)">Remove Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Remove(System.String)">Remove Method</h3>
|
||||||
@ -703,7 +703,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Remove(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Remove(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Stop">Stop Method</h3>
|
||||||
@ -719,7 +719,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String)">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String)">Stop Method</h3>
|
||||||
@ -752,7 +752,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Stop(WebSocketSharp.Frame.CloseStatusCode,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.Sweep">Sweep Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.Sweep">Sweep Method</h3>
|
||||||
@ -768,7 +768,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Sweep:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.Sweep: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.Sweeped">Sweeped Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.Sweeped">Sweeped Property</h3>
|
||||||
@ -788,7 +788,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.Sweeped:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.SessionManager.SyncRoot">SyncRoot Property</h3>
|
<h3 id="P:WebSocketSharp.Server.SessionManager.SyncRoot">SyncRoot Property</h3>
|
||||||
@ -808,7 +808,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.SyncRoot:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.SessionManager.SyncRoot: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.SessionManager.TryGetByID(System.String,WebSocketSharp.Server.WebSocketService@)">TryGetByID Method</h3>
|
<h3 id="M:WebSocketSharp.Server.SessionManager.TryGetByID(System.String,WebSocketSharp.Server.WebSocketService@)">TryGetByID Method</h3>
|
||||||
@ -845,7 +845,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.TryGetByID(System.String,WebSocketSharp.Server.WebSocketService@):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.SessionManager.TryGetByID(System.String,WebSocketSharp.Server.WebSocketService@):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServer:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServer: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -606,7 +606,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Int32)">WebSocketServer Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Int32)">WebSocketServer Constructor</h3>
|
||||||
@ -633,7 +633,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Int32):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.String)">WebSocketServer Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.String)">WebSocketServer Constructor</h3>
|
||||||
@ -660,7 +660,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Int32,System.Boolean)">WebSocketServer Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Int32,System.Boolean)">WebSocketServer Constructor</h3>
|
||||||
@ -693,7 +693,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Int32,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Int32,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32)">WebSocketServer Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32)">WebSocketServer Constructor</h3>
|
||||||
@ -726,7 +726,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32,System.Boolean)">WebSocketServer Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32,System.Boolean)">WebSocketServer Constructor</h3>
|
||||||
@ -765,7 +765,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServer(System.Net.IPAddress,System.Int32,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServer.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServer.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
||||||
@ -792,7 +792,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.AcceptWebSocket(System.Net.Sockets.TcpClient):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.AcceptWebSocket(System.Net.Sockets.TcpClient):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServer.AddService``1(System.String)">AddService<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServer.AddService``1(System.String)">AddService<T> Generic Method</h3>
|
||||||
@ -830,7 +830,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.AddService``1(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServer.Broadcast(System.String)">Broadcast Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServer.Broadcast(System.String)">Broadcast Method</h3>
|
||||||
@ -857,7 +857,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.Broadcast(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServer.ServicePath">ServicePath Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServer.ServicePath">ServicePath Property</h3>
|
||||||
@ -877,7 +877,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServer.ServicePath:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServer.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServer.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServer.Stop">Stop Method</h3>
|
||||||
@ -893,7 +893,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServer.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServer.Sweeped">Sweeped Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServer.Sweeped">Sweeped Property</h3>
|
||||||
@ -913,7 +913,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServer.Sweeped:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServer.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServerBase:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServerBase: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -498,7 +498,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServerBase(System.String)">WebSocketServerBase Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServerBase(System.String)">WebSocketServerBase Constructor</h3>
|
||||||
@ -551,7 +551,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase(System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServerBase(System.Net.IPAddress,System.Int32,System.String,System.Boolean)">WebSocketServerBase Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServerBase(System.Net.IPAddress,System.Int32,System.String,System.Boolean)">WebSocketServerBase Constructor</h3>
|
||||||
@ -630,7 +630,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase(System.Net.IPAddress,System.Int32,System.String,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServerBase(System.Net.IPAddress,System.Int32,System.String,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
||||||
@ -657,7 +657,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.AcceptWebSocket(System.Net.Sockets.TcpClient):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.AcceptWebSocket(System.Net.Sockets.TcpClient):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.Address">Address Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.Address">Address Property</h3>
|
||||||
@ -677,7 +677,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.Address:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.Address: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.BaseUri">BaseUri Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.BaseUri">BaseUri Property</h3>
|
||||||
@ -697,7 +697,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.BaseUri:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.BaseUri: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Error(System.String)">Error Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Error(System.String)">Error Method</h3>
|
||||||
@ -724,7 +724,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.Error(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.Error(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.IsSecure">IsSecure Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.IsSecure">IsSecure Property</h3>
|
||||||
@ -744,7 +744,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.IsSecure:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.IsSecure: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.IsSelfHost">IsSelfHost Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.IsSelfHost">IsSelfHost Property</h3>
|
||||||
@ -764,7 +764,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.IsSelfHost:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.IsSelfHost: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="E:WebSocketSharp.Server.WebSocketServerBase.OnError">OnError Event</h3>
|
<h3 id="E:WebSocketSharp.Server.WebSocketServerBase.OnError">OnError Event</h3>
|
||||||
@ -780,7 +780,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="E:WebSocketSharp.Server.WebSocketServerBase.OnError:Version Information">
|
<div class="SectionBox" id="E:WebSocketSharp.Server.WebSocketServerBase.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.Port">Port Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServerBase.Port">Port Property</h3>
|
||||||
@ -800,7 +800,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.Port:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServerBase.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Start">Start Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Start">Start Method</h3>
|
||||||
@ -816,7 +816,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.Start:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServerBase.Stop">Stop Method</h3>
|
||||||
@ -832,7 +832,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServerBase.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketService:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketService: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -583,7 +583,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketService:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketService: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Bind(WebSocketSharp.WebSocket,WebSocketSharp.Server.SessionManager)">Bind Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Bind(WebSocketSharp.WebSocket,WebSocketSharp.Server.SessionManager)">Bind Method</h3>
|
||||||
@ -616,7 +616,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Bind(WebSocketSharp.WebSocket,WebSocketSharp.Server.SessionManager):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Bind(WebSocketSharp.WebSocket,WebSocketSharp.Server.SessionManager):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketService.ID">ID Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketService.ID">ID Property</h3>
|
||||||
@ -636,7 +636,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.ID:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.ID: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketService.IsBound">IsBound Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketService.IsBound">IsBound Property</h3>
|
||||||
@ -656,7 +656,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.IsBound:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.IsBound: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnClose(System.Object,WebSocketSharp.CloseEventArgs)">OnClose Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnClose(System.Object,WebSocketSharp.CloseEventArgs)">OnClose Method</h3>
|
||||||
@ -689,7 +689,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnClose(System.Object,WebSocketSharp.CloseEventArgs):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnClose(System.Object,WebSocketSharp.CloseEventArgs):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnError(System.Object,WebSocketSharp.ErrorEventArgs)">OnError Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnError(System.Object,WebSocketSharp.ErrorEventArgs)">OnError Method</h3>
|
||||||
@ -722,7 +722,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnError(System.Object,WebSocketSharp.ErrorEventArgs):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnError(System.Object,WebSocketSharp.ErrorEventArgs):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnMessage(System.Object,WebSocketSharp.MessageEventArgs)">OnMessage Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnMessage(System.Object,WebSocketSharp.MessageEventArgs)">OnMessage Method</h3>
|
||||||
@ -755,7 +755,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnMessage(System.Object,WebSocketSharp.MessageEventArgs):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnMessage(System.Object,WebSocketSharp.MessageEventArgs):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnOpen(System.Object,System.EventArgs)">OnOpen Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.OnOpen(System.Object,System.EventArgs)">OnOpen Method</h3>
|
||||||
@ -788,7 +788,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnOpen(System.Object,System.EventArgs):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.OnOpen(System.Object,System.EventArgs):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Ping">Ping Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Ping">Ping Method</h3>
|
||||||
@ -808,7 +808,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Ping:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Ping: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Ping(System.String)">Ping Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Ping(System.String)">Ping Method</h3>
|
||||||
@ -839,7 +839,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Ping(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Ping(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingAround">PingAround Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingAround">PingAround Method</h3>
|
||||||
@ -859,7 +859,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingAround:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingAround: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingAround(System.String)">PingAround Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingAround(System.String)">PingAround Method</h3>
|
||||||
@ -890,7 +890,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingAround(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingAround(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String)">PingTo Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String)">PingTo Method</h3>
|
||||||
@ -921,7 +921,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingTo(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String,System.String)">PingTo Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String,System.String)">PingTo Method</h3>
|
||||||
@ -958,7 +958,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.PingTo(System.String,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Publish(System.Byte[])">Publish Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Publish(System.Byte[])">Publish Method</h3>
|
||||||
@ -985,7 +985,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Publish(System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Publish(System.Byte[]):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Publish(System.String)">Publish Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Publish(System.String)">Publish Method</h3>
|
||||||
@ -1012,7 +1012,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Publish(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Publish(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketService.QueryString">QueryString Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketService.QueryString">QueryString Property</h3>
|
||||||
@ -1032,7 +1032,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.QueryString:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.QueryString: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Send(System.Byte[])">Send Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Send(System.Byte[])">Send Method</h3>
|
||||||
@ -1059,7 +1059,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Send(System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Send(System.Byte[]):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Send(System.String)">Send Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Send(System.String)">Send Method</h3>
|
||||||
@ -1086,7 +1086,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Send(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Send(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.Byte[])">SendTo Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.Byte[])">SendTo Method</h3>
|
||||||
@ -1119,7 +1119,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.Byte[]):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.String)">SendTo Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.String)">SendTo Method</h3>
|
||||||
@ -1152,7 +1152,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.SendTo(System.String,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketService.Sessions">Sessions Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketService.Sessions">Sessions Property</h3>
|
||||||
@ -1172,7 +1172,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.Sessions:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketService.Sessions: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Start">Start Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Start">Start Method</h3>
|
||||||
@ -1188,7 +1188,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Start:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop">Stop Method</h3>
|
||||||
@ -1204,7 +1204,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop(System.UInt16,System.String)">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop(System.UInt16,System.String)">Stop Method</h3>
|
||||||
@ -1237,7 +1237,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Stop(System.UInt16,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Stop(System.UInt16,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String)">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketService.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String)">Stop Method</h3>
|
||||||
@ -1270,7 +1270,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Stop(WebSocketSharp.Frame.CloseStatusCode,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketService.Stop(WebSocketSharp.Frame.CloseStatusCode,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -231,7 +231,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServiceHost`1:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Server.WebSocketServiceHost`1: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.36581</div>
|
<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>
|
||||||
<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>
|
||||||
@ -653,7 +653,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.String)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.String)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -680,7 +680,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -713,7 +713,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -746,7 +746,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -785,7 +785,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Int32,System.String,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -824,7 +824,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
<h3 id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String,System.Boolean)">WebSocketServiceHost Constructor</h3>
|
||||||
@ -869,7 +869,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String,System.Boolean):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.Server.WebSocketServiceHost`1(System.Net.IPAddress,System.Int32,System.String,System.Boolean):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.AcceptWebSocket(System.Net.Sockets.TcpClient)">AcceptWebSocket Method</h3>
|
||||||
@ -896,7 +896,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.AcceptWebSocket(System.Net.Sockets.TcpClient):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.AcceptWebSocket(System.Net.Sockets.TcpClient):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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.BindWebSocket(WebSocketSharp.WebSocket)">BindWebSocket Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.BindWebSocket(WebSocketSharp.WebSocket)">BindWebSocket Method</h3>
|
||||||
@ -923,7 +923,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.BindWebSocket(WebSocketSharp.WebSocket):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadcast(System.String)">Broadcast Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadcast(System.String)">Broadcast Method</h3>
|
||||||
@ -950,7 +950,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadcast(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadping(System.String)">Broadping Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadping(System.String)">Broadping Method</h3>
|
||||||
@ -981,7 +981,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadping(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Broadping(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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Stop">Stop Method</h3>
|
<h3 id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Stop">Stop Method</h3>
|
||||||
@ -997,7 +997,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.Stop:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Server.WebSocketServiceHost`1.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Sweeped">Sweeped Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Sweeped">Sweeped Property</h3>
|
||||||
@ -1017,7 +1017,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Sweeped:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServiceHost`1.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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Uri">Uri Property</h3>
|
<h3 id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Uri">Uri Property</h3>
|
||||||
@ -1037,7 +1037,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Uri:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.Server.WebSocketServiceHost`1.Uri: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.36581</div>
|
<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>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -245,7 +245,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.ByteOrder:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.ByteOrder:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="Members" id="T:WebSocketSharp.ByteOrder:Members">
|
<div class="Members" id="T:WebSocketSharp.ByteOrder:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -222,7 +222,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.CloseEventArgs:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.CloseEventArgs:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -371,7 +371,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.Code:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.Code:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.CloseEventArgs.Reason">Reason Property</h3>
|
<h3 id="P:WebSocketSharp.CloseEventArgs.Reason">Reason Property</h3>
|
||||||
@ -391,7 +391,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.Reason:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.Reason:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.CloseEventArgs.WasClean">WasClean Property</h3>
|
<h3 id="P:WebSocketSharp.CloseEventArgs.WasClean">WasClean Property</h3>
|
||||||
@ -411,7 +411,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.WasClean:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.CloseEventArgs.WasClean:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -221,7 +221,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.ErrorEventArgs:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.ErrorEventArgs:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -301,7 +301,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.ErrorEventArgs.Message:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.ErrorEventArgs.Message:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Ext:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.Ext:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -755,7 +755,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.AcceptWebSocket(System.Net.Sockets.TcpClient,System.Boolean):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.AcceptWebSocket(System.Net.Sockets.TcpClient,System.Boolean):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Emit(System.EventHandler,System.Object,System.EventArgs)">Emit Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Emit(System.EventHandler,System.Object,System.EventArgs)">Emit Method</h3>
|
||||||
@ -794,7 +794,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Emit(System.EventHandler,System.Object,System.EventArgs):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Emit(System.EventHandler,System.Object,System.EventArgs):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Emit``1(System.EventHandler{``0},System.Object,``0)">Emit<TEventArgs> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Emit``1(System.EventHandler{``0},System.Object,``0)">Emit<TEventArgs> Generic Method</h3>
|
||||||
@ -844,7 +844,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Emit``1(System.EventHandler{``0},System.Object,``0):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Emit``1(System.EventHandler{``0},System.Object,``0):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.EqualsAndSaveTo(System.Int32,System.Char,System.Collections.Generic.List{System.Byte})">EqualsAndSaveTo Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.EqualsAndSaveTo(System.Int32,System.Char,System.Collections.Generic.List{System.Byte})">EqualsAndSaveTo Method</h3>
|
||||||
@ -905,7 +905,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.EqualsAndSaveTo(System.Int32,System.Char,System.Collections.Generic.List{System.Byte}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.EqualsAndSaveTo(System.Int32,System.Char,System.Collections.Generic.List{System.Byte}):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String)">Exists Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String)">Exists Method</h3>
|
||||||
@ -942,7 +942,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String,System.String)">Exists Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String,System.String)">Exists Method</h3>
|
||||||
@ -985,7 +985,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Exists(System.Collections.Specialized.NameValueCollection,System.String,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetAbsolutePath(System.Uri)">GetAbsolutePath Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetAbsolutePath(System.Uri)">GetAbsolutePath Method</h3>
|
||||||
@ -1016,7 +1016,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetAbsolutePath(System.Uri):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetAbsolutePath(System.Uri):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetDescription(WebSocketSharp.Net.HttpStatusCode)">GetDescription Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetDescription(WebSocketSharp.Net.HttpStatusCode)">GetDescription Method</h3>
|
||||||
@ -1047,7 +1047,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetDescription(WebSocketSharp.Net.HttpStatusCode):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetDescription(WebSocketSharp.Net.HttpStatusCode):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetName(System.String,System.String)">GetName Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetName(System.String,System.String)">GetName Method</h3>
|
||||||
@ -1084,7 +1084,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetName(System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetName(System.String,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetNameAndValue(System.String,System.String)">GetNameAndValue Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetNameAndValue(System.String,System.String)">GetNameAndValue Method</h3>
|
||||||
@ -1121,7 +1121,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetNameAndValue(System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetNameAndValue(System.String,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetStatusDescription(System.Int32)">GetStatusDescription Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetStatusDescription(System.Int32)">GetStatusDescription Method</h3>
|
||||||
@ -1152,7 +1152,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetStatusDescription(System.Int32):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetStatusDescription(System.Int32):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.GetValue(System.String,System.String)">GetValue Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.GetValue(System.String,System.String)">GetValue Method</h3>
|
||||||
@ -1189,7 +1189,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetValue(System.String,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.GetValue(System.String,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsEmpty(System.String)">IsEmpty Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsEmpty(System.String)">IsEmpty Method</h3>
|
||||||
@ -1220,7 +1220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsEmpty(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsEmpty(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsHostOrder(WebSocketSharp.ByteOrder)">IsHostOrder Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsHostOrder(WebSocketSharp.ByteOrder)">IsHostOrder Method</h3>
|
||||||
@ -1251,7 +1251,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsHostOrder(WebSocketSharp.ByteOrder):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsHostOrder(WebSocketSharp.ByteOrder):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsNull``1(``0)">IsNull<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsNull``1(``0)">IsNull<T> Generic Method</h3>
|
||||||
@ -1293,7 +1293,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNull``1(``0):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNull``1(``0):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsNullDo``1(``0,System.Action)">IsNullDo<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsNullDo``1(``0,System.Action)">IsNullDo<T> Generic Method</h3>
|
||||||
@ -1342,7 +1342,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNullDo``1(``0,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNullDo``1(``0,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsNullOrEmpty(System.String)">IsNullOrEmpty Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsNullOrEmpty(System.String)">IsNullOrEmpty Method</h3>
|
||||||
@ -1373,7 +1373,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNullOrEmpty(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsNullOrEmpty(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsPredefinedScheme(System.String)">IsPredefinedScheme Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsPredefinedScheme(System.String)">IsPredefinedScheme Method</h3>
|
||||||
@ -1404,7 +1404,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsPredefinedScheme(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsPredefinedScheme(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.IsValidAbsolutePath(System.String,System.String@)">IsValidAbsolutePath Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.IsValidAbsolutePath(System.String,System.String@)">IsValidAbsolutePath Method</h3>
|
||||||
@ -1441,7 +1441,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsValidAbsolutePath(System.String,System.String@):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.IsValidAbsolutePath(System.String,System.String@):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.MaybeUri(System.String)">MaybeUri Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.MaybeUri(System.String)">MaybeUri Method</h3>
|
||||||
@ -1472,7 +1472,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.MaybeUri(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.MaybeUri(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.NotEqual(System.String,System.String,System.Boolean)">NotEqual Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.NotEqual(System.String,System.String,System.Boolean)">NotEqual Method</h3>
|
||||||
@ -1515,7 +1515,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.NotEqual(System.String,System.String,System.Boolean):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.NotEqual(System.String,System.String,System.Boolean):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int32)">ReadBytes Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int32)">ReadBytes Method</h3>
|
||||||
@ -1552,7 +1552,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int32):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int32):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64)">ReadBytes Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64)">ReadBytes Method</h3>
|
||||||
@ -1589,7 +1589,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64,System.Int32)">ReadBytes Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64,System.Int32)">ReadBytes Method</h3>
|
||||||
@ -1632,7 +1632,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64,System.Int32):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ReadBytes(System.IO.Stream,System.Int64,System.Int32):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.SubArray``1(``0[],System.Int32,System.Int32)">SubArray<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.SubArray``1(``0[],System.Int32,System.Int32)">SubArray<T> Generic Method</h3>
|
||||||
@ -1686,7 +1686,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.SubArray``1(``0[],System.Int32,System.Int32):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.SubArray``1(``0[],System.Int32,System.Int32):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action)">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action)">Times Method</h3>
|
||||||
@ -1719,7 +1719,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64})">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64})">Times Method</h3>
|
||||||
@ -1753,7 +1753,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action)">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action)">Times Method</h3>
|
||||||
@ -1786,7 +1786,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64})">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64})">Times Method</h3>
|
||||||
@ -1820,7 +1820,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action)">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action)">Times Method</h3>
|
||||||
@ -1853,7 +1853,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64})">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64})">Times Method</h3>
|
||||||
@ -1887,7 +1887,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action)">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action)">Times Method</h3>
|
||||||
@ -1920,7 +1920,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action{System.UInt64})">Times Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action{System.UInt64})">Times Method</h3>
|
||||||
@ -1954,7 +1954,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action{System.UInt64}):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt64,System.Action{System.UInt64}):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.To``1(System.Byte[],WebSocketSharp.ByteOrder)">To<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.To``1(System.Byte[],WebSocketSharp.ByteOrder)">To<T> Generic Method</h3>
|
||||||
@ -2023,7 +2023,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.To``1(System.Byte[],WebSocketSharp.ByteOrder):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.To``1(System.Byte[],WebSocketSharp.ByteOrder):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ToBytes``1(``0,WebSocketSharp.ByteOrder)">ToBytes<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ToBytes``1(``0,WebSocketSharp.ByteOrder)">ToBytes<T> Generic Method</h3>
|
||||||
@ -2071,7 +2071,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToBytes``1(``0,WebSocketSharp.ByteOrder):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToBytes``1(``0,WebSocketSharp.ByteOrder):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ToHostOrder(System.Byte[],WebSocketSharp.ByteOrder)">ToHostOrder Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ToHostOrder(System.Byte[],WebSocketSharp.ByteOrder)">ToHostOrder Method</h3>
|
||||||
@ -2125,7 +2125,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToHostOrder(System.Byte[],WebSocketSharp.ByteOrder):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToHostOrder(System.Byte[],WebSocketSharp.ByteOrder):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ToString``1(``0[],System.String)">ToString<T> Generic Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ToString``1(``0[],System.String)">ToString<T> Generic Method</h3>
|
||||||
@ -2192,7 +2192,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToString``1(``0[],System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToString``1(``0[],System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.ToUri(System.String)">ToUri Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.ToUri(System.String)">ToUri Method</h3>
|
||||||
@ -2224,7 +2224,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToUri(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.ToUri(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.TryCreateWebSocketUri(System.String,System.Uri@,System.String@)">TryCreateWebSocketUri Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.TryCreateWebSocketUri(System.String,System.Uri@,System.String@)">TryCreateWebSocketUri Method</h3>
|
||||||
@ -2284,7 +2284,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.TryCreateWebSocketUri(System.String,System.Uri@,System.String@):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.TryCreateWebSocketUri(System.String,System.Uri@,System.String@):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.UrlDecode(System.String)">UrlDecode Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.UrlDecode(System.String)">UrlDecode Method</h3>
|
||||||
@ -2316,7 +2316,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.UrlDecode(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.UrlDecode(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.UrlEncode(System.String)">UrlEncode Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.UrlEncode(System.String)">UrlEncode Method</h3>
|
||||||
@ -2348,7 +2348,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.UrlEncode(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.UrlEncode(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.Ext.WriteContent(WebSocketSharp.Net.HttpListenerResponse,System.Byte[])">WriteContent Method</h3>
|
<h3 id="M:WebSocketSharp.Ext.WriteContent(WebSocketSharp.Net.HttpListenerResponse,System.Byte[])">WriteContent Method</h3>
|
||||||
@ -2398,7 +2398,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Ext.WriteContent(WebSocketSharp.Net.HttpListenerResponse,System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.Ext.WriteContent(WebSocketSharp.Net.HttpListenerResponse,System.Byte[]):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -222,7 +222,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.MessageEventArgs:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.MessageEventArgs:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -329,7 +329,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.Data:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.Data:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.MessageEventArgs.RawData">RawData Property</h3>
|
<h3 id="P:WebSocketSharp.MessageEventArgs.RawData">RawData Property</h3>
|
||||||
@ -349,7 +349,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.RawData:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.RawData:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.MessageEventArgs.Type">Type Property</h3>
|
<h3 id="P:WebSocketSharp.MessageEventArgs.Type">Type Property</h3>
|
||||||
@ -369,7 +369,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.Type:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.MessageEventArgs.Type:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.WebSocket:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.WebSocket:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -340,36 +340,6 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>[read-only]<div></div></td>
|
<td>[read-only]<div></div></td>
|
||||||
<td>
|
|
||||||
<b>
|
|
||||||
<a href="#P:WebSocketSharp.WebSocket.UnsentBuffer">UnsentBuffer</a>
|
|
||||||
</b>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i>
|
|
||||||
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a>[]</i>.
|
|
||||||
Gets the buffer that contains unsent WebSocket frames.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr valign="top">
|
|
||||||
<td>[read-only]<div></div></td>
|
|
||||||
<td>
|
|
||||||
<b>
|
|
||||||
<a href="#P:WebSocketSharp.WebSocket.UnsentCount">UnsentCount</a>
|
|
||||||
</b>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<i>
|
|
||||||
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a>
|
|
||||||
</i>.
|
|
||||||
Gets the count of unsent WebSocket frames.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr valign="top">
|
|
||||||
<td>
|
|
||||||
<div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<b>
|
<b>
|
||||||
<a href="#P:WebSocketSharp.WebSocket.Url">Url</a>
|
<a href="#P:WebSocketSharp.WebSocket.Url">Url</a>
|
||||||
@ -379,7 +349,7 @@
|
|||||||
<i>
|
<i>
|
||||||
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a>
|
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a>
|
||||||
</i>.
|
</i>.
|
||||||
Gets or sets the WebSocket URL.
|
Gets the WebSocket URL.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -725,7 +695,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.WebSocket(System.String,System.String[]):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.WebSocket(System.String,System.String[]):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.WebSocket(System.String,System.EventHandler,System.EventHandler{WebSocketSharp.MessageEventArgs},System.EventHandler{WebSocketSharp.ErrorEventArgs},System.EventHandler{WebSocketSharp.CloseEventArgs},System.String[])">WebSocket Constructor</h3>
|
<h3 id="C:WebSocketSharp.WebSocket(System.String,System.EventHandler,System.EventHandler{WebSocketSharp.MessageEventArgs},System.EventHandler{WebSocketSharp.ErrorEventArgs},System.EventHandler{WebSocketSharp.CloseEventArgs},System.String[])">WebSocket Constructor</h3>
|
||||||
@ -807,7 +777,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.WebSocket(System.String,System.EventHandler,System.EventHandler{WebSocketSharp.MessageEventArgs},System.EventHandler{WebSocketSharp.ErrorEventArgs},System.EventHandler{WebSocketSharp.CloseEventArgs},System.String[]):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.WebSocket(System.String,System.EventHandler,System.EventHandler{WebSocketSharp.MessageEventArgs},System.EventHandler{WebSocketSharp.ErrorEventArgs},System.EventHandler{WebSocketSharp.CloseEventArgs},System.String[]):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Close">Close Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Close">Close Method</h3>
|
||||||
@ -823,7 +793,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Close(System.UInt16)">Close Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Close(System.UInt16)">Close Method</h3>
|
||||||
@ -850,7 +820,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(System.UInt16):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(System.UInt16):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode)">Close Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode)">Close Method</h3>
|
||||||
@ -877,7 +847,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Close(System.UInt16,System.String)">Close Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Close(System.UInt16,System.String)">Close Method</h3>
|
||||||
@ -910,7 +880,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(System.UInt16,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(System.UInt16,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode,System.String)">Close Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode,System.String)">Close Method</h3>
|
||||||
@ -943,7 +913,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode,System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Close(WebSocketSharp.Frame.CloseStatusCode,System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Connect">Connect Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Connect">Connect Method</h3>
|
||||||
@ -959,7 +929,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Connect:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Connect:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Dispose">Dispose Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Dispose">Dispose Method</h3>
|
||||||
@ -978,7 +948,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Dispose:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Dispose:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.Extensions">Extensions Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.Extensions">Extensions Property</h3>
|
||||||
@ -998,7 +968,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Extensions:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Extensions:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.IsAlive">IsAlive Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.IsAlive">IsAlive Property</h3>
|
||||||
@ -1018,7 +988,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.IsAlive:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.IsAlive:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.IsSecure">IsSecure Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.IsSecure">IsSecure Property</h3>
|
||||||
@ -1038,7 +1008,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.IsSecure:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.IsSecure:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="E:WebSocketSharp.WebSocket.OnClose">OnClose Event</h3>
|
<h3 id="E:WebSocketSharp.WebSocket.OnClose">OnClose Event</h3>
|
||||||
@ -1054,7 +1024,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnClose:Version Information">
|
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnClose:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="E:WebSocketSharp.WebSocket.OnError">OnError Event</h3>
|
<h3 id="E:WebSocketSharp.WebSocket.OnError">OnError Event</h3>
|
||||||
@ -1070,7 +1040,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnError:Version Information">
|
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnError:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="E:WebSocketSharp.WebSocket.OnMessage">OnMessage Event</h3>
|
<h3 id="E:WebSocketSharp.WebSocket.OnMessage">OnMessage Event</h3>
|
||||||
@ -1086,7 +1056,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnMessage:Version Information">
|
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnMessage:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="E:WebSocketSharp.WebSocket.OnOpen">OnOpen Event</h3>
|
<h3 id="E:WebSocketSharp.WebSocket.OnOpen">OnOpen Event</h3>
|
||||||
@ -1102,7 +1072,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnOpen:Version Information">
|
<div class="SectionBox" id="E:WebSocketSharp.WebSocket.OnOpen:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Ping">Ping Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Ping">Ping Method</h3>
|
||||||
@ -1122,7 +1092,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Ping:Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Ping:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Ping(System.String)">Ping Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Ping(System.String)">Ping Method</h3>
|
||||||
@ -1153,7 +1123,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Ping(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Ping(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.Protocol">Protocol Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.Protocol">Protocol Property</h3>
|
||||||
@ -1173,7 +1143,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Protocol:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Protocol:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.ReadyState">ReadyState Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.ReadyState">ReadyState Property</h3>
|
||||||
@ -1193,7 +1163,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.ReadyState:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.ReadyState:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Send(System.Byte[])">Send Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Send(System.Byte[])">Send Method</h3>
|
||||||
@ -1220,7 +1190,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.Byte[]):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.Byte[]):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Send(System.IO.FileInfo)">Send Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Send(System.IO.FileInfo)">Send Method</h3>
|
||||||
@ -1247,7 +1217,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.IO.FileInfo):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.IO.FileInfo):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.Send(System.String)">Send Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.Send(System.String)">Send Method</h3>
|
||||||
@ -1274,7 +1244,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.String):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.Send(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.Byte[],System.Action)">SendAsync Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.Byte[],System.Action)">SendAsync Method</h3>
|
||||||
@ -1307,7 +1277,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.Byte[],System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.Byte[],System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.IO.FileInfo,System.Action)">SendAsync Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.IO.FileInfo,System.Action)">SendAsync Method</h3>
|
||||||
@ -1340,7 +1310,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.IO.FileInfo,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.IO.FileInfo,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.String,System.Action)">SendAsync Method</h3>
|
<h3 id="M:WebSocketSharp.WebSocket.SendAsync(System.String,System.Action)">SendAsync Method</h3>
|
||||||
@ -1373,56 +1343,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.String,System.Action):Version Information">
|
<div class="SectionBox" id="M:WebSocketSharp.WebSocket.SendAsync(System.String,System.Action):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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.WebSocket.UnsentBuffer">UnsentBuffer Property</h3>
|
|
||||||
<blockquote id="P:WebSocketSharp.WebSocket.UnsentBuffer:member">
|
|
||||||
<p class="Summary">
|
|
||||||
Gets the buffer that contains unsent WebSocket frames.
|
|
||||||
</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>UnsentBuffer</b> { get; }</div>
|
|
||||||
<h4 class="Subsection">Value</h4>
|
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.WebSocket.UnsentBuffer:Value">
|
|
||||||
An array of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Byte">byte</a> that contains unsent WebSocket frames.
|
|
||||||
</blockquote>
|
|
||||||
<h2 class="Section">Remarks</h2>
|
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.UnsentBuffer: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.WebSocket.UnsentBuffer:Version Information">
|
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
|
||||||
<hr size="1" />
|
|
||||||
</blockquote>
|
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.UnsentCount">UnsentCount Property</h3>
|
|
||||||
<blockquote id="P:WebSocketSharp.WebSocket.UnsentCount:member">
|
|
||||||
<p class="Summary">
|
|
||||||
Gets the count of unsent WebSocket frames.
|
|
||||||
</p>
|
|
||||||
<h2>Syntax</h2>
|
|
||||||
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> <b>UnsentCount</b> { get; }</div>
|
|
||||||
<h4 class="Subsection">Value</h4>
|
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.WebSocket.UnsentCount:Value">
|
|
||||||
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> that contains the count of unsent WebSocket frames.
|
|
||||||
</blockquote>
|
|
||||||
<h2 class="Section">Remarks</h2>
|
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.UnsentCount: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.WebSocket.UnsentCount:Version Information">
|
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="P:WebSocketSharp.WebSocket.Url">Url Property</h3>
|
<h3 id="P:WebSocketSharp.WebSocket.Url">Url Property</h3>
|
||||||
<blockquote id="P:WebSocketSharp.WebSocket.Url:member">
|
<blockquote id="P:WebSocketSharp.WebSocket.Url:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
Gets or sets the WebSocket URL.
|
Gets the WebSocket URL.
|
||||||
</p>
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a> <b>Url</b> { get; set; }</div>
|
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a> <b>Url</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.WebSocket.Url:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.WebSocket.Url:Value">
|
||||||
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a> that contains the WebSocket URL.
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Uri">Uri</a> that contains the WebSocket URL.
|
||||||
@ -1433,7 +1363,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Url:Version Information">
|
<div class="SectionBox" id="P:WebSocketSharp.WebSocket.Url:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.WsReceivedTooBigMessageException:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.WsReceivedTooBigMessageException:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<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>
|
<h2 class="Section" id="Members">Members</h2>
|
||||||
<div class="SectionBox" id="_Members">
|
<div class="SectionBox" id="_Members">
|
||||||
<p>
|
<p>
|
||||||
@ -312,7 +312,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.WsReceivedTooBigMessageException:Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.WsReceivedTooBigMessageException:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h3 id="C:WebSocketSharp.WsReceivedTooBigMessageException(System.String)">WsReceivedTooBigMessageException Constructor</h3>
|
<h3 id="C:WebSocketSharp.WsReceivedTooBigMessageException(System.String)">WsReceivedTooBigMessageException Constructor</h3>
|
||||||
@ -339,7 +339,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="C:WebSocketSharp.WsReceivedTooBigMessageException(System.String):Version Information">
|
<div class="SectionBox" id="C:WebSocketSharp.WsReceivedTooBigMessageException(System.String):Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
<hr size="1" />
|
<hr size="1" />
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
</div>
|
||||||
|
@ -262,7 +262,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 class="Section">Requirements</h2>
|
<h2 class="Section">Requirements</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.WsState:Docs:Version Information">
|
<div class="SectionBox" id="T:WebSocketSharp.WsState:Docs:Version Information">
|
||||||
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.36581</div>
|
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)<br /><b>Assembly Versions: </b>1.0.2.39341</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="Members" id="T:WebSocketSharp.WsState:Members">
|
<div class="Members" id="T:WebSocketSharp.WsState:Members">
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed CloseStatusCode extends System.Enum" />
|
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed CloseStatusCode extends System.Enum" />
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyName>websocket-sharp</AssemblyName>
|
<AssemblyName>websocket-sharp</AssemblyName>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<Base>
|
<Base>
|
||||||
<BaseTypeName>System.Enum</BaseTypeName>
|
<BaseTypeName>System.Enum</BaseTypeName>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode ABNORMAL = unsigned int16(1006)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode ABNORMAL = unsigned int16(1006)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -46,7 +46,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode AWAY = unsigned int16(1001)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode AWAY = unsigned int16(1001)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -62,7 +62,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode IGNORE_EXTENSION = unsigned int16(1010)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode IGNORE_EXTENSION = unsigned int16(1010)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -80,7 +80,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode INCONSISTENT_DATA = unsigned int16(1007)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode INCONSISTENT_DATA = unsigned int16(1007)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -97,7 +97,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode INCORRECT_DATA = unsigned int16(1003)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode INCORRECT_DATA = unsigned int16(1003)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -114,7 +114,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode NO_STATUS_CODE = unsigned int16(1005)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode NO_STATUS_CODE = unsigned int16(1005)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -130,7 +130,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode NORMAL = unsigned int16(1000)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode NORMAL = unsigned int16(1000)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -146,7 +146,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode POLICY_VIOLATION = unsigned int16(1008)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode POLICY_VIOLATION = unsigned int16(1008)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -163,7 +163,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode PROTOCOL_ERROR = unsigned int16(1002)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode PROTOCOL_ERROR = unsigned int16(1002)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -180,7 +180,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode SERVER_ERROR = unsigned int16(1011)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode SERVER_ERROR = unsigned int16(1011)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -197,7 +197,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode TLS_HANDSHAKE_FAILURE = unsigned int16(1015)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode TLS_HANDSHAKE_FAILURE = unsigned int16(1015)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -214,7 +214,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode TOO_BIG = unsigned int16(1009)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode TOO_BIG = unsigned int16(1009)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
@ -231,7 +231,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode UNDEFINED = unsigned int16(1004)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.CloseStatusCode UNDEFINED = unsigned int16(1004)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.CloseStatusCode</ReturnType>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed Fin extends System.Enum" />
|
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed Fin extends System.Enum" />
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyName>websocket-sharp</AssemblyName>
|
<AssemblyName>websocket-sharp</AssemblyName>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<Base>
|
<Base>
|
||||||
<BaseTypeName>System.Enum</BaseTypeName>
|
<BaseTypeName>System.Enum</BaseTypeName>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.Fin FINAL = unsigned int8(1)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.Fin FINAL = unsigned int8(1)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.Fin</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.Fin</ReturnType>
|
||||||
@ -44,7 +44,7 @@
|
|||||||
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.Fin MORE = unsigned int8(0)" />
|
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype WebSocketSharp.Frame.Fin MORE = unsigned int8(0)" />
|
||||||
<MemberType>Field</MemberType>
|
<MemberType>Field</MemberType>
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyVersion>1.0.2.36581</AssemblyVersion>
|
<AssemblyVersion>1.0.2.39341</AssemblyVersion>
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
<ReturnType>WebSocketSharp.Frame.Fin</ReturnType>
|
<ReturnType>WebSocketSharp.Frame.Fin</ReturnType>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user