Added some XML documentation comments
This commit is contained in:
parent
a376daedf0
commit
a9d5e06166
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.
@ -31,13 +31,18 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Specialized;
|
using System.Collections.Specialized;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
|
||||||
using System.Security.Principal;
|
using System.Security.Principal;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using WebSocketSharp.Net.WebSockets;
|
using WebSocketSharp.Net.WebSockets;
|
||||||
|
|
||||||
namespace WebSocketSharp.Net {
|
namespace WebSocketSharp.Net {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Provides access to the HTTP request and response objects used by the <see cref="HttpListener"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// The HttpListenerContext class cannot be inherited.
|
||||||
|
/// </remarks>
|
||||||
public sealed class HttpListenerContext {
|
public sealed class HttpListenerContext {
|
||||||
|
|
||||||
#region Private Fields
|
#region Private Fields
|
||||||
@ -93,14 +98,33 @@ namespace WebSocketSharp.Net {
|
|||||||
|
|
||||||
#region Public Properties
|
#region Public Properties
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the <see cref="HttpListenerRequest"/> that contains the HTTP request from a client.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// A <see cref="HttpListenerRequest"/> that contains the HTTP request objects.
|
||||||
|
/// </value>
|
||||||
public HttpListenerRequest Request {
|
public HttpListenerRequest Request {
|
||||||
get { return request; }
|
get { return request; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the <see cref="HttpListenerResponse"/> that contains the HTTP response to send to
|
||||||
|
/// the client in response to the client's request.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// A <see cref="HttpListenerResponse"/> that contains the HTTP response objects.
|
||||||
|
/// </value>
|
||||||
public HttpListenerResponse Response {
|
public HttpListenerResponse Response {
|
||||||
get { return response; }
|
get { return response; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the client information (identity, authentication information and security roles).
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// A <see cref="IPrincipal"/> contains the client information.
|
||||||
|
/// </value>
|
||||||
public IPrincipal User {
|
public IPrincipal User {
|
||||||
get { return user; }
|
get { return user; }
|
||||||
}
|
}
|
||||||
@ -125,7 +149,7 @@ namespace WebSocketSharp.Net {
|
|||||||
}
|
}
|
||||||
// TODO: throw if malformed -> 400 bad request
|
// TODO: throw if malformed -> 400 bad request
|
||||||
}
|
}
|
||||||
|
|
||||||
internal IPrincipal ParseBasicAuthentication (string authData)
|
internal IPrincipal ParseBasicAuthentication (string authData)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
@ -135,29 +159,29 @@ namespace WebSocketSharp.Net {
|
|||||||
string password = null;
|
string password = null;
|
||||||
int pos = -1;
|
int pos = -1;
|
||||||
string authString = Encoding.Default.GetString (Convert.FromBase64String (authData));
|
string authString = Encoding.Default.GetString (Convert.FromBase64String (authData));
|
||||||
|
|
||||||
// The format is DOMAIN\username:password
|
// The format is DOMAIN\username:password
|
||||||
// Domain is optional
|
// Domain is optional
|
||||||
|
|
||||||
pos = authString.IndexOf (':');
|
pos = authString.IndexOf (':');
|
||||||
|
|
||||||
// parse the password off the end
|
// parse the password off the end
|
||||||
password = authString.Substring (pos+1);
|
password = authString.Substring (pos+1);
|
||||||
|
|
||||||
// discard the password
|
// discard the password
|
||||||
authString = authString.Substring (0, pos);
|
authString = authString.Substring (0, pos);
|
||||||
|
|
||||||
// check if there is a domain
|
// check if there is a domain
|
||||||
pos = authString.IndexOf ('\\');
|
pos = authString.IndexOf ('\\');
|
||||||
|
|
||||||
if (pos > 0) {
|
if (pos > 0) {
|
||||||
//domain = authString.Substring (0, pos);
|
//domain = authString.Substring (0, pos);
|
||||||
user = authString.Substring (pos);
|
user = authString.Substring (pos);
|
||||||
} else {
|
} else {
|
||||||
user = authString;
|
user = authString;
|
||||||
}
|
}
|
||||||
|
|
||||||
HttpListenerBasicIdentity identity = new HttpListenerBasicIdentity (user, password);
|
var identity = new System.Net.HttpListenerBasicIdentity (user, password);
|
||||||
// TODO: What are the roles MS sets
|
// TODO: What are the roles MS sets
|
||||||
return new GenericPrincipal (identity, new string [0]);
|
return new GenericPrincipal (identity, new string [0]);
|
||||||
} catch (Exception) {
|
} catch (Exception) {
|
||||||
@ -170,6 +194,12 @@ namespace WebSocketSharp.Net {
|
|||||||
|
|
||||||
#region Public Method
|
#region Public Method
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Accepts a WebSocket connection by the <see cref="HttpListener"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>
|
||||||
|
/// A <see cref="HttpListenerWebSocketContext"/> that contains a WebSocket connection.
|
||||||
|
/// </returns>
|
||||||
public HttpListenerWebSocketContext AcceptWebSocket ()
|
public HttpListenerWebSocketContext AcceptWebSocket ()
|
||||||
{
|
{
|
||||||
return new HttpListenerWebSocketContext (this);
|
return new HttpListenerWebSocketContext (this);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// HttpListenerException.cs
|
// HttpListenerException.cs
|
||||||
// Copied from System.Net.HttpListenerException
|
// Copied from System.Net.HttpListenerException.cs
|
||||||
//
|
//
|
||||||
// Author:
|
// Author:
|
||||||
// Gonzalo Paniagua Javier (gonzalo@novell.com)
|
// Gonzalo Paniagua Javier (gonzalo@novell.com)
|
||||||
@ -33,27 +33,79 @@ using System.Runtime.Serialization;
|
|||||||
|
|
||||||
namespace WebSocketSharp.Net {
|
namespace WebSocketSharp.Net {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
|
/// </summary>
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class HttpListenerException : Win32Exception
|
public class HttpListenerException : Win32Exception {
|
||||||
{
|
|
||||||
|
#region Public Constructors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="HttpListenerException"/> class.
|
||||||
|
/// </summary>
|
||||||
public HttpListenerException ()
|
public HttpListenerException ()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="HttpListenerException"/> class
|
||||||
|
/// with the specified <paramref name="errorCode"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="errorCode">
|
||||||
|
/// An <see cref="int"/> that contains an error code.
|
||||||
|
/// </param>
|
||||||
public HttpListenerException (int errorCode) : base (errorCode)
|
public HttpListenerException (int errorCode) : base (errorCode)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="HttpListenerException"/> class
|
||||||
|
/// with the specified <paramref name="errorCode"/> and <paramref name="message"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="errorCode">
|
||||||
|
/// An <see cref="int"/> that contains an error code.
|
||||||
|
/// </param>
|
||||||
|
/// <param name="message">
|
||||||
|
/// A <see cref="string"/> that describes the error.
|
||||||
|
/// </param>
|
||||||
public HttpListenerException (int errorCode, string message) : base (errorCode, message)
|
public HttpListenerException (int errorCode, string message) : base (errorCode, message)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Protected Constructor
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="HttpListenerException"/> class
|
||||||
|
/// from the specified <see cref="SerializationInfo"/> and <see cref="StreamingContext"/> classes.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="serializationInfo">
|
||||||
|
/// A <see cref="SerializationInfo"/> that contains the information required to deserialize
|
||||||
|
/// the new <see cref="HttpListenerException"/> object.
|
||||||
|
/// </param>
|
||||||
|
/// <param name="streamingContext">
|
||||||
|
/// A <see cref="StreamingContext"/>.
|
||||||
|
/// </param>
|
||||||
protected HttpListenerException (SerializationInfo serializationInfo, StreamingContext streamingContext) : base (serializationInfo, streamingContext)
|
protected HttpListenerException (SerializationInfo serializationInfo, StreamingContext streamingContext) : base (serializationInfo, streamingContext)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Property
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a value that represents the error that occurred.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// An <see cref="int"/> that contains an error code.
|
||||||
|
/// </value>
|
||||||
public override int ErrorCode {
|
public override int ErrorCode {
|
||||||
get { return base.ErrorCode; }
|
get { return base.ErrorCode; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -234,7 +234,7 @@ namespace WebSocketSharp.Net.WebSockets {
|
|||||||
/// Gets the client information (identity, authentication information and security roles).
|
/// Gets the client information (identity, authentication information and security roles).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// An <see cref="IPrincipal"/> that contains the client information.
|
/// A <see cref="IPrincipal"/> that contains the client information.
|
||||||
/// </value>
|
/// </value>
|
||||||
public override IPrincipal User {
|
public override IPrincipal User {
|
||||||
get {
|
get {
|
||||||
|
@ -248,7 +248,7 @@ namespace WebSocketSharp.Net.WebSockets {
|
|||||||
/// Gets the client information (identity, authentication information and security roles).
|
/// Gets the client information (identity, authentication information and security roles).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// An <see cref="IPrincipal"/> that contains the client information.
|
/// A <see cref="IPrincipal"/> that contains the client information.
|
||||||
/// </value>
|
/// </value>
|
||||||
/// <exception cref="NotImplementedException">
|
/// <exception cref="NotImplementedException">
|
||||||
/// This property is not implemented.
|
/// This property is not implemented.
|
||||||
|
@ -147,7 +147,7 @@ namespace WebSocketSharp.Net.WebSockets {
|
|||||||
/// Gets the client information (identity, authentication information and security roles).
|
/// Gets the client information (identity, authentication information and security roles).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// An <see cref="IPrincipal"/> that contains the client information.
|
/// A <see cref="IPrincipal"/> that contains the client information.
|
||||||
/// </value>
|
/// </value>
|
||||||
public abstract IPrincipal User { get; }
|
public abstract IPrincipal User { get; }
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1590,6 +1590,99 @@
|
|||||||
Stops receiving incoming requests.
|
Stops receiving incoming requests.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="T:WebSocketSharp.Net.HttpListenerContext">
|
||||||
|
<summary>
|
||||||
|
Provides access to the HTTP request and response objects used by the <see cref="T:WebSocketSharp.Net.HttpListener" /> class.
|
||||||
|
</summary>
|
||||||
|
<remarks>
|
||||||
|
The HttpListenerContext class cannot be inherited.
|
||||||
|
</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="P:WebSocketSharp.Net.HttpListenerContext.Request">
|
||||||
|
<summary>
|
||||||
|
Gets the <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains the HTTP request from a client.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains the HTTP request objects.
|
||||||
|
</value>
|
||||||
|
</member>
|
||||||
|
<member name="P:WebSocketSharp.Net.HttpListenerContext.Response">
|
||||||
|
<summary>
|
||||||
|
Gets the <see cref="T:WebSocketSharp.Net.HttpListenerResponse" /> that contains the HTTP response to send to
|
||||||
|
the client in response to the client's request.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.HttpListenerResponse" /> that contains the HTTP response objects.
|
||||||
|
</value>
|
||||||
|
</member>
|
||||||
|
<member name="P:WebSocketSharp.Net.HttpListenerContext.User">
|
||||||
|
<summary>
|
||||||
|
Gets the client information (identity, authentication information and security roles).
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:System.Security.Principal.IPrincipal" /> contains the client information.
|
||||||
|
</value>
|
||||||
|
</member>
|
||||||
|
<member name="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket">
|
||||||
|
<summary>
|
||||||
|
Accepts a WebSocket connection by the <see cref="T:WebSocketSharp.Net.HttpListener" />.
|
||||||
|
</summary>
|
||||||
|
<returns>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext" /> that contains a WebSocket connection.
|
||||||
|
</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:WebSocketSharp.Net.HttpListenerException">
|
||||||
|
<summary>
|
||||||
|
The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:WebSocketSharp.Net.HttpListenerException.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:WebSocketSharp.Net.HttpListenerException.#ctor(System.Int32)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
with the specified <paramref name="errorCode" />.
|
||||||
|
</summary>
|
||||||
|
<param name="errorCode">
|
||||||
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
|
</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:WebSocketSharp.Net.HttpListenerException.#ctor(System.Int32,System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
with the specified <paramref name="errorCode" /> and <paramref name="message" />.
|
||||||
|
</summary>
|
||||||
|
<param name="errorCode">
|
||||||
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
|
</param>
|
||||||
|
<param name="message">
|
||||||
|
A <see cref="T:System.String" /> that describes the error.
|
||||||
|
</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:WebSocketSharp.Net.HttpListenerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.
|
||||||
|
</summary>
|
||||||
|
<param name="serializationInfo">
|
||||||
|
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to deserialize
|
||||||
|
the new <see cref="T:WebSocketSharp.Net.HttpListenerException" /> object.
|
||||||
|
</param>
|
||||||
|
<param name="streamingContext">
|
||||||
|
A <see cref="T:System.Runtime.Serialization.StreamingContext" />.
|
||||||
|
</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:WebSocketSharp.Net.HttpListenerException.ErrorCode">
|
||||||
|
<summary>
|
||||||
|
Gets a value that represents the error that occurred.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
|
</value>
|
||||||
|
</member>
|
||||||
<member name="M:WebSocketSharp.Net.HttpUtility.HtmlDecode(System.String)">
|
<member name="M:WebSocketSharp.Net.HttpUtility.HtmlDecode(System.String)">
|
||||||
<summary>
|
<summary>
|
||||||
Decodes an HTML-encoded string and returns the decoded string.
|
Decodes an HTML-encoded string and returns the decoded string.
|
||||||
@ -2687,7 +2780,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.UserEndPoint">
|
<member name="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.UserEndPoint">
|
||||||
@ -2832,7 +2925,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
<exception cref="T:System.NotImplementedException">
|
<exception cref="T:System.NotImplementedException">
|
||||||
This property is not implemented.
|
This property is not implemented.
|
||||||
@ -2961,7 +3054,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:WebSocketSharp.Net.WebSockets.WebSocketContext.WebSocket">
|
<member name="P:WebSocketSharp.Net.WebSockets.WebSocketContext.WebSocket">
|
||||||
|
@ -895,7 +895,7 @@
|
|||||||
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.User:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.User:Value">
|
||||||
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.User:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext.User:Remarks">
|
||||||
|
@ -946,7 +946,7 @@
|
|||||||
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.TcpListenerWebSocketContext.User:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.TcpListenerWebSocketContext.User:Value">
|
||||||
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h4 class="Subsection">Exceptions</h4>
|
<h4 class="Subsection">Exceptions</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.TcpListenerWebSocketContext.User:Exceptions">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.TcpListenerWebSocketContext.User:Exceptions">
|
||||||
|
@ -684,7 +684,7 @@
|
|||||||
<div class="Signature">public abstract <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
<div class="Signature">public abstract <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.WebSocketContext.User:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebSockets.WebSocketContext.User:Value">
|
||||||
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> that contains the client information.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSockets.WebSocketContext.User:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.WebSockets.WebSocketContext.User:Remarks">
|
||||||
|
@ -207,8 +207,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<h1 class="PageTitle" id="T:WebSocketSharp.Net.HttpListenerContext">HttpListenerContext Class</h1>
|
<h1 class="PageTitle" id="T:WebSocketSharp.Net.HttpListenerContext">HttpListenerContext Class</h1>
|
||||||
<p class="Summary" id="T:WebSocketSharp.Net.HttpListenerContext:Summary">
|
<p class="Summary" id="T:WebSocketSharp.Net.HttpListenerContext:Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Provides access to the HTTP request and response objects used by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> class.
|
||||||
</p>
|
</p>
|
||||||
<div id="T:WebSocketSharp.Net.HttpListenerContext:Signature">
|
<div id="T:WebSocketSharp.Net.HttpListenerContext:Signature">
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public sealed class <b>HttpListenerContext</b></div>
|
<div class="Signature">public sealed class <b>HttpListenerContext</b></div>
|
||||||
@ -216,8 +216,8 @@
|
|||||||
<div class="Remarks" id="T:WebSocketSharp.Net.HttpListenerContext:Docs">
|
<div class="Remarks" id="T:WebSocketSharp.Net.HttpListenerContext:Docs">
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerContext:Docs:Remarks">
|
<div class="SectionBox" id="T:WebSocketSharp.Net.HttpListenerContext:Docs:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
The HttpListenerContext class cannot be inherited.
|
||||||
</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)</div>
|
<b>Namespace: </b>WebSocketSharp.Net<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
|
||||||
@ -241,7 +241,9 @@
|
|||||||
<td>
|
<td>
|
||||||
<i>
|
<i>
|
||||||
<a href="../WebSocketSharp.Net/HttpListenerRequest.html">HttpListenerRequest</a>
|
<a href="../WebSocketSharp.Net/HttpListenerRequest.html">HttpListenerRequest</a>
|
||||||
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
|
</i>.
|
||||||
|
Gets the <a href="../WebSocketSharp.Net/HttpListenerRequest.html">WebSocketSharp.Net.HttpListenerRequest</a> that contains the HTTP request from a client.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>[read-only]<div></div></td>
|
<td>[read-only]<div></div></td>
|
||||||
@ -253,7 +255,10 @@
|
|||||||
<td>
|
<td>
|
||||||
<i>
|
<i>
|
||||||
<a href="../WebSocketSharp.Net/HttpListenerResponse.html">HttpListenerResponse</a>
|
<a href="../WebSocketSharp.Net/HttpListenerResponse.html">HttpListenerResponse</a>
|
||||||
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
|
</i>.
|
||||||
|
Gets the <a href="../WebSocketSharp.Net/HttpListenerResponse.html">WebSocketSharp.Net.HttpListenerResponse</a> that contains the HTTP response to send to
|
||||||
|
the client in response to the client's request.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>[read-only]<div></div></td>
|
<td>[read-only]<div></div></td>
|
||||||
@ -265,7 +270,9 @@
|
|||||||
<td>
|
<td>
|
||||||
<i>
|
<i>
|
||||||
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a>
|
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a>
|
||||||
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
|
</i>.
|
||||||
|
Gets the client information (identity, authentication information and security roles).
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -282,7 +289,9 @@
|
|||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<b>
|
<b>
|
||||||
<a href="#M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket">AcceptWebSocket</a>
|
<a href="#M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket">AcceptWebSocket</a>
|
||||||
</b>()<nobr> : <a href="../WebSocketSharp.Net.WebSockets/HttpListenerWebSocketContext.html">WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
|
</b>()<nobr> : <a href="../WebSocketSharp.Net.WebSockets/HttpListenerWebSocketContext.html">WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext</a></nobr><blockquote>
|
||||||
|
Accepts a WebSocket connection by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
|
||||||
|
</blockquote></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -325,14 +334,14 @@
|
|||||||
<h3 id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket">AcceptWebSocket Method</h3>
|
<h3 id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket">AcceptWebSocket Method</h3>
|
||||||
<blockquote id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:member">
|
<blockquote id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Accepts a WebSocket connection by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
|
||||||
</p>
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <a href="../WebSocketSharp.Net.WebSockets/HttpListenerWebSocketContext.html">WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext</a> <b>AcceptWebSocket</b> ()</div>
|
<div class="Signature">public <a href="../WebSocketSharp.Net.WebSockets/HttpListenerWebSocketContext.html">WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext</a> <b>AcceptWebSocket</b> ()</div>
|
||||||
<h4 class="Subsection">Returns</h4>
|
<h4 class="Subsection">Returns</h4>
|
||||||
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Returns">
|
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Returns">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="../WebSocketSharp.Net.WebSockets/HttpListenerWebSocketContext.html">WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext</a> that contains a WebSocket connection.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Remarks">
|
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListenerContext.AcceptWebSocket:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
||||||
@ -345,14 +354,14 @@
|
|||||||
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Request">Request Property</h3>
|
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Request">Request Property</h3>
|
||||||
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.Request:member">
|
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.Request:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Gets the <a href="../WebSocketSharp.Net/HttpListenerRequest.html">WebSocketSharp.Net.HttpListenerRequest</a> that contains the HTTP request from a client.
|
||||||
</p>
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerRequest.html">HttpListenerRequest</a> <b>Request</b> { get; }</div>
|
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerRequest.html">HttpListenerRequest</a> <b>Request</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Value">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="../WebSocketSharp.Net/HttpListenerRequest.html">WebSocketSharp.Net.HttpListenerRequest</a> that contains the HTTP request objects.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Request:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
||||||
@ -365,14 +374,15 @@
|
|||||||
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Response">Response Property</h3>
|
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.Response">Response Property</h3>
|
||||||
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.Response:member">
|
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.Response:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Gets the <a href="../WebSocketSharp.Net/HttpListenerResponse.html">WebSocketSharp.Net.HttpListenerResponse</a> that contains the HTTP response to send to
|
||||||
</p>
|
the client in response to the client's request.
|
||||||
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerResponse.html">HttpListenerResponse</a> <b>Response</b> { get; }</div>
|
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerResponse.html">HttpListenerResponse</a> <b>Response</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Value">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="../WebSocketSharp.Net/HttpListenerResponse.html">WebSocketSharp.Net.HttpListenerResponse</a> that contains the HTTP response objects.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.Response:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
||||||
@ -385,14 +395,14 @@
|
|||||||
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.User">User Property</h3>
|
<h3 id="P:WebSocketSharp.Net.HttpListenerContext.User">User Property</h3>
|
||||||
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.User:member">
|
<blockquote id="P:WebSocketSharp.Net.HttpListenerContext.User:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</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.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> <b>User</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Value">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Security.Principal.IPrincipal">System.Security.Principal.IPrincipal</a> contains the client information.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerContext.User:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
||||||
|
@ -207,8 +207,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<h1 class="PageTitle" id="T:WebSocketSharp.Net.HttpListenerException">HttpListenerException Class</h1>
|
<h1 class="PageTitle" id="T:WebSocketSharp.Net.HttpListenerException">HttpListenerException Class</h1>
|
||||||
<p class="Summary" id="T:WebSocketSharp.Net.HttpListenerException:Summary">
|
<p class="Summary" id="T:WebSocketSharp.Net.HttpListenerException:Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
</p>
|
</p>
|
||||||
<div id="T:WebSocketSharp.Net.HttpListenerException:Signature">
|
<div id="T:WebSocketSharp.Net.HttpListenerException:Signature">
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public class <b>HttpListenerException</b> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ComponentModel.Win32Exception">System.ComponentModel.Win32Exception</a></div>
|
<div class="Signature">public class <b>HttpListenerException</b> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ComponentModel.Win32Exception">System.ComponentModel.Win32Exception</a></div>
|
||||||
@ -243,8 +243,8 @@
|
|||||||
</b>()</div>
|
</b>()</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
@ -258,8 +258,9 @@
|
|||||||
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>)</div>
|
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>)</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</td>
|
with the specified <i>errorCode</i>.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
@ -273,8 +274,9 @@
|
|||||||
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a>)</div>
|
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a>)</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</td>
|
with the specified <i>errorCode</i> and <i>message</i>.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -295,8 +297,9 @@
|
|||||||
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a>)</div>
|
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a>)</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</td>
|
from the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> and <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> classes.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -315,7 +318,9 @@
|
|||||||
<td>
|
<td>
|
||||||
<i>
|
<i>
|
||||||
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>
|
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a>
|
||||||
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
|
</i>.
|
||||||
|
Gets a value that represents the error that occurred.
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -358,8 +363,8 @@
|
|||||||
<h3 id="C:WebSocketSharp.Net.HttpListenerException">HttpListenerException Constructor</h3>
|
<h3 id="C:WebSocketSharp.Net.HttpListenerException">HttpListenerException Constructor</h3>
|
||||||
<blockquote id="C:WebSocketSharp.Net.HttpListenerException:member">
|
<blockquote id="C:WebSocketSharp.Net.HttpListenerException:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class.
|
||||||
</p>
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <b>HttpListenerException</b> ()</div>
|
<div class="Signature">public <b>HttpListenerException</b> ()</div>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
@ -374,8 +379,9 @@
|
|||||||
<h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32)">HttpListenerException Constructor</h3>
|
<h3 id="C:WebSocketSharp.Net.HttpListenerException(System.Int32)">HttpListenerException Constructor</h3>
|
||||||
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Int32):member">
|
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Int32):member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</p>
|
with the specified <i>errorCode</i>.
|
||||||
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> errorCode)</div>
|
<div class="Signature">public <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> errorCode)</div>
|
||||||
<h4 class="Subsection">Parameters</h4>
|
<h4 class="Subsection">Parameters</h4>
|
||||||
@ -385,8 +391,8 @@
|
|||||||
<i>errorCode</i>
|
<i>errorCode</i>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> that contains an error code.
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
@ -401,8 +407,9 @@
|
|||||||
<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>
|
||||||
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String):member">
|
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Int32,System.String):member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</p>
|
with the specified <i>errorCode</i> and <i>message</i>.
|
||||||
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> errorCode, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> message)</div>
|
<div class="Signature">public <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> errorCode, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> message)</div>
|
||||||
<h4 class="Subsection">Parameters</h4>
|
<h4 class="Subsection">Parameters</h4>
|
||||||
@ -412,14 +419,14 @@
|
|||||||
<i>errorCode</i>
|
<i>errorCode</i>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> that contains an error code.
|
||||||
</dd>
|
</dd>
|
||||||
<dt>
|
<dt>
|
||||||
<i>message</i>
|
<i>message</i>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> that describes the error.
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
@ -434,8 +441,9 @@
|
|||||||
<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>
|
||||||
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):member">
|
<blockquote id="C:WebSocketSharp.Net.HttpListenerException(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> class
|
||||||
</p>
|
from the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> and <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> classes.
|
||||||
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">protected <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> serializationInfo, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> streamingContext)</div>
|
<div class="Signature">protected <b>HttpListenerException</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> serializationInfo, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> streamingContext)</div>
|
||||||
<h4 class="Subsection">Parameters</h4>
|
<h4 class="Subsection">Parameters</h4>
|
||||||
@ -445,14 +453,15 @@
|
|||||||
<i>serializationInfo</i>
|
<i>serializationInfo</i>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that contains the information required to deserialize
|
||||||
</dd>
|
the new <a href="../WebSocketSharp.Net/HttpListenerException.html">WebSocketSharp.Net.HttpListenerException</a> object.
|
||||||
|
</dd>
|
||||||
<dt>
|
<dt>
|
||||||
<i>streamingContext</i>
|
<i>streamingContext</i>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a>.
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
@ -467,14 +476,14 @@
|
|||||||
<h3 id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode">ErrorCode Property</h3>
|
<h3 id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode">ErrorCode Property</h3>
|
||||||
<blockquote id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:member">
|
<blockquote id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:member">
|
||||||
<p class="Summary">
|
<p class="Summary">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Gets a value that represents the error that occurred.
|
||||||
</p>
|
</p>
|
||||||
<h2>Syntax</h2>
|
<h2>Syntax</h2>
|
||||||
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> <b>ErrorCode</b> { get; }</div>
|
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> <b>ErrorCode</b> { get; }</div>
|
||||||
<h4 class="Subsection">Value</h4>
|
<h4 class="Subsection">Value</h4>
|
||||||
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Value">
|
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Value">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> that contains an error code.
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<h2 class="Section">Remarks</h2>
|
<h2 class="Section">Remarks</h2>
|
||||||
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Remarks">
|
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListenerException.ErrorCode:Remarks">
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
||||||
|
@ -255,16 +255,16 @@
|
|||||||
<a href="./HttpListenerContext.html">HttpListenerContext</a>
|
<a href="./HttpListenerContext.html">HttpListenerContext</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Provides access to the HTTP request and response objects used by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> class.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
<a href="./HttpListenerException.html">HttpListenerException</a>
|
<a href="./HttpListenerException.html">HttpListenerException</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
|
@ -347,16 +347,16 @@
|
|||||||
<a href="WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a>
|
<a href="WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
Provides access to the HTTP request and response objects used by the <a href="./WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> class.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
<a href="WebSocketSharp.Net/HttpListenerException.html">HttpListenerException</a>
|
<a href="WebSocketSharp.Net/HttpListenerException.html">HttpListenerException</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
|
The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td>
|
<td>
|
||||||
|
@ -237,7 +237,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
|
@ -246,7 +246,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
<exception cref="T:System.NotImplementedException">
|
<exception cref="T:System.NotImplementedException">
|
||||||
|
@ -217,7 +217,7 @@
|
|||||||
Gets the client information (identity, authentication information and security roles).
|
Gets the client information (identity, authentication information and security roles).
|
||||||
</summary>
|
</summary>
|
||||||
<value>
|
<value>
|
||||||
An <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
A <see cref="T:System.Security.Principal.IPrincipal" /> that contains the client information.
|
||||||
</value>
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
|
@ -9,8 +9,12 @@
|
|||||||
</Base>
|
</Base>
|
||||||
<Interfaces />
|
<Interfaces />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<remarks>To be added.</remarks>
|
Provides access to the HTTP request and response objects used by the <see cref="T:WebSocketSharp.Net.HttpListener" /> class.
|
||||||
|
</summary>
|
||||||
|
<remarks>
|
||||||
|
The HttpListenerContext class cannot be inherited.
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
<Members>
|
<Members>
|
||||||
<Member MemberName="AcceptWebSocket">
|
<Member MemberName="AcceptWebSocket">
|
||||||
@ -22,8 +26,12 @@
|
|||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Parameters />
|
<Parameters />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<returns>To be added.</returns>
|
Accepts a WebSocket connection by the <see cref="T:WebSocketSharp.Net.HttpListener" />.
|
||||||
|
</summary>
|
||||||
|
<returns>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.WebSockets.HttpListenerWebSocketContext" /> that contains a WebSocket connection.
|
||||||
|
</returns>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -35,8 +43,12 @@
|
|||||||
<ReturnType>WebSocketSharp.Net.HttpListenerRequest</ReturnType>
|
<ReturnType>WebSocketSharp.Net.HttpListenerRequest</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<value>To be added.</value>
|
Gets the <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains the HTTP request from a client.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains the HTTP request objects.
|
||||||
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -48,8 +60,13 @@
|
|||||||
<ReturnType>WebSocketSharp.Net.HttpListenerResponse</ReturnType>
|
<ReturnType>WebSocketSharp.Net.HttpListenerResponse</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<value>To be added.</value>
|
Gets the <see cref="T:WebSocketSharp.Net.HttpListenerResponse" /> that contains the HTTP response to send to
|
||||||
|
the client in response to the client's request.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:WebSocketSharp.Net.HttpListenerResponse" /> that contains the HTTP response objects.
|
||||||
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -61,8 +78,12 @@
|
|||||||
<ReturnType>System.Security.Principal.IPrincipal</ReturnType>
|
<ReturnType>System.Security.Principal.IPrincipal</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<value>To be added.</value>
|
Gets the client information (identity, authentication information and security roles).
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
A <see cref="T:System.Security.Principal.IPrincipal" /> contains the client information.
|
||||||
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
|
@ -9,7 +9,9 @@
|
|||||||
</Base>
|
</Base>
|
||||||
<Interfaces />
|
<Interfaces />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
|
The exception that is thrown when an error occurs processing an HTTP request.
|
||||||
|
</summary>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
<Members>
|
<Members>
|
||||||
@ -19,7 +21,9 @@
|
|||||||
<MemberType>Constructor</MemberType>
|
<MemberType>Constructor</MemberType>
|
||||||
<Parameters />
|
<Parameters />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class.
|
||||||
|
</summary>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -31,8 +35,13 @@
|
|||||||
<Parameter Name="errorCode" Type="System.Int32" />
|
<Parameter Name="errorCode" Type="System.Int32" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<param name="errorCode">To be added.</param>
|
<param name="errorCode">
|
||||||
<summary>To be added.</summary>
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
|
</param>
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
with the specified <paramref name="errorCode" />.
|
||||||
|
</summary>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -45,9 +54,16 @@
|
|||||||
<Parameter Name="message" Type="System.String" />
|
<Parameter Name="message" Type="System.String" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<param name="errorCode">To be added.</param>
|
<param name="errorCode">
|
||||||
<param name="message">To be added.</param>
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
<summary>To be added.</summary>
|
</param>
|
||||||
|
<param name="message">
|
||||||
|
A <see cref="T:System.String" /> that describes the error.
|
||||||
|
</param>
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
with the specified <paramref name="errorCode" /> and <paramref name="message" />.
|
||||||
|
</summary>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -60,9 +76,17 @@
|
|||||||
<Parameter Name="streamingContext" Type="System.Runtime.Serialization.StreamingContext" />
|
<Parameter Name="streamingContext" Type="System.Runtime.Serialization.StreamingContext" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<param name="serializationInfo">To be added.</param>
|
<param name="serializationInfo">
|
||||||
<param name="streamingContext">To be added.</param>
|
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to deserialize
|
||||||
<summary>To be added.</summary>
|
the new <see cref="T:WebSocketSharp.Net.HttpListenerException" /> object.
|
||||||
|
</param>
|
||||||
|
<param name="streamingContext">
|
||||||
|
A <see cref="T:System.Runtime.Serialization.StreamingContext" />.
|
||||||
|
</param>
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListenerException" /> class
|
||||||
|
from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.
|
||||||
|
</summary>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
@ -74,8 +98,12 @@
|
|||||||
<ReturnType>System.Int32</ReturnType>
|
<ReturnType>System.Int32</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added.</summary>
|
<summary>
|
||||||
<value>To be added.</value>
|
Gets a value that represents the error that occurred.
|
||||||
|
</summary>
|
||||||
|
<value>
|
||||||
|
An <see cref="T:System.Int32" /> that contains an error code.
|
||||||
|
</value>
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<Overview>
|
<Overview>
|
||||||
<Assemblies>
|
<Assemblies>
|
||||||
<Assembly Name="websocket-sharp" Version="1.0.2.31269">
|
<Assembly Name="websocket-sharp" Version="1.0.2.39586">
|
||||||
<AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 11 00 00 00 29 17 fb 89 fe c3 91 f7 2b cb 8b e2 61 d2 3f 05 93 6d 65 a8 9e 63 72 a6 f5 d5 2c f2 9d 20 fa 0b c0 70 6a f6 88 7e 8b 90 3f 39 f5 76 c8 48 e0 bb 7b b2 7b ed d3 10 a7 1a 0f 70 98 0f 7f f4 4b 53 09 d2 a5 ef 36 c3 56 b4 aa f0 91 72 63 25 07 89 e0 93 3e 3f 2e f2 b9 73 0e 12 15 5d 43 56 c3 f4 70 a5 89 fe f7 f6 ac 3e 77 c2 d8 d0 84 91 f4 0c d1 f3 8e dc c3 c3 b8 38 3d 0c bf 17 de 20 78 c1 ]</AssemblyPublicKey>
|
<AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 11 00 00 00 29 17 fb 89 fe c3 91 f7 2b cb 8b e2 61 d2 3f 05 93 6d 65 a8 9e 63 72 a6 f5 d5 2c f2 9d 20 fa 0b c0 70 6a f6 88 7e 8b 90 3f 39 f5 76 c8 48 e0 bb 7b b2 7b ed d3 10 a7 1a 0f 70 98 0f 7f f4 4b 53 09 d2 a5 ef 36 c3 56 b4 aa f0 91 72 63 25 07 89 e0 93 3e 3f 2e f2 b9 73 0e 12 15 5d 43 56 c3 f4 70 a5 89 fe f7 f6 ac 3e 77 c2 d8 d0 84 91 f4 0c d1 f3 8e dc c3 c3 b8 38 3d 0c bf 17 de 20 78 c1 ]</AssemblyPublicKey>
|
||||||
<Attributes>
|
<Attributes>
|
||||||
<Attribute>
|
<Attribute>
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user