Added some XML documentation comments

This commit is contained in:
sta
2013-02-16 16:17:47 +09:00
parent 9b1772e80a
commit d3c21db2e3
19 changed files with 762 additions and 171 deletions

View File

@@ -207,8 +207,8 @@
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector">AuthenticationSchemeSelector Delegate</h1>
<p class="Summary" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Selects the authentication scheme for a <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> instance.
</p>
<div id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Signature">
<h2>Syntax</h2>
<div class="Signature">public delegate <a href="../WebSocketSharp.Net/AuthenticationSchemes.html">AuthenticationSchemes</a> <b>AuthenticationSchemeSelector</b> (<a href="../WebSocketSharp.Net/HttpListenerRequest.html">HttpListenerRequest</a> httpRequest)</div>
@@ -221,14 +221,14 @@
<i>httpRequest</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
A <a href="../WebSocketSharp.Net/HttpListenerRequest.html">WebSocketSharp.Net.HttpListenerRequest</a> that contains a client request information.
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Docs:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
One of the <a href="../WebSocketSharp.Net/AuthenticationSchemes.html">WebSocketSharp.Net.AuthenticationSchemes</a> values that indicates the scheme used to authenticate the specified client request.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="T:WebSocketSharp.Net.AuthenticationSchemeSelector:Docs:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>

View File

@@ -207,8 +207,8 @@
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Net.AuthenticationSchemes">AuthenticationSchemes Enum</h1>
<p class="Summary" id="T:WebSocketSharp.Net.AuthenticationSchemes:Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Contains the values of the schemes for authentication.
</p>
<div id="T:WebSocketSharp.Net.AuthenticationSchemes:Signature">
<h2>Syntax</h2>
<div class="Signature">[System.Flags]<br />public enum <b>AuthenticationSchemes</b></div>
@@ -230,7 +230,7 @@
<b>Anonymous</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates anonymous authentication.
</td>
</tr>
<tr valign="top">
@@ -238,7 +238,7 @@
<b>Basic</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates basic authentication.
</td>
</tr>
<tr valign="top">
@@ -246,7 +246,7 @@
<b>Digest</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates digest authentication.
</td>
</tr>
<tr valign="top">
@@ -254,7 +254,7 @@
<b>IntegratedWindowsAuthentication</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates Windows authentication.
</td>
</tr>
<tr valign="top">
@@ -262,7 +262,7 @@
<b>Negotiate</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates negotiating with the client to determine the authentication scheme.
</td>
</tr>
<tr valign="top">
@@ -270,7 +270,7 @@
<b>None</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates that no authentication is allowed.
</td>
</tr>
<tr valign="top">
@@ -278,7 +278,7 @@
<b>Ntlm</b>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
Indicates NTLM authentication.
</td>
</tr>
</table>

View File

@@ -207,8 +207,8 @@
</div>
<h1 class="PageTitle" id="T:WebSocketSharp.Net.HttpListener">HttpListener Class</h1>
<p class="Summary" id="T:WebSocketSharp.Net.HttpListener:Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Provides a simple, programmatically controlled HTTP listener.
</p>
<div id="T:WebSocketSharp.Net.HttpListener:Signature">
<h2>Syntax</h2>
<div class="Signature">public sealed class <b>HttpListener</b> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IDisposable">IDisposable</a></div>
@@ -243,8 +243,8 @@
</b>()</div>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> class.
</td>
</tr>
</table>
</div>
@@ -266,7 +266,9 @@
<td>
<i>
<a href="../WebSocketSharp.Net/AuthenticationSchemes.html">AuthenticationSchemes</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets or sets the scheme used to authenticate the clients.
</td>
</tr>
<tr valign="top">
<td>
@@ -281,7 +283,9 @@
<td>
<i>
<a href="../WebSocketSharp.Net/AuthenticationSchemeSelector.html">AuthenticationSchemeSelector</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets or sets the delegate called to determine the scheme used to authenticate clients.
</td>
</tr>
<tr valign="top">
<td>
@@ -308,7 +312,9 @@
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets a value indicating whether the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> has been started.
</td>
</tr>
<tr valign="top">
<td>[read-only]<div>static </div></td>
@@ -320,7 +326,9 @@
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets a value indicating whether the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> can be used with the current operating system.
</td>
</tr>
<tr valign="top">
<td>[read-only]<div></div></td>
@@ -332,7 +340,9 @@
<td>
<i>
<a href="../WebSocketSharp.Net/HttpListenerPrefixCollection.html">HttpListenerPrefixCollection</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets the URI prefixes handled by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</td>
</tr>
<tr valign="top">
<td>
@@ -347,7 +357,9 @@
<td>
<i>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a>
</i>. <span class="NotEntered">Documentation for this section has not yet been entered.</span></td>
</i>.
Gets or sets the name of the realm associated with the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</td>
</tr>
<tr valign="top">
<td>
@@ -379,7 +391,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.Abort">Abort</a>
</b>()<blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>()<blockquote>
Shuts down the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> immediately.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -389,7 +403,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">BeginGetContext</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.AsyncCallback">AsyncCallback</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object">object</a>)<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.AsyncCallback">AsyncCallback</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object">object</a>)<nobr> : <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a></nobr><blockquote>
Begins getting an incoming request information asynchronously.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -399,7 +415,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.Close">Close</a>
</b>()<blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>()<blockquote>
Shuts down the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -409,7 +427,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)">EndGetContext</a>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a>)<nobr> : <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>(<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a>)<nobr> : <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a></nobr><blockquote>
Ends an asynchronous operation to get an incoming request information.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -419,7 +439,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.GetContext">GetContext</a>
</b>()<nobr> : <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a></nobr><blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>()<nobr> : <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a></nobr><blockquote>
Gets an incoming request information.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -429,7 +451,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.Start">Start</a>
</b>()<blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>()<blockquote>
Starts to receive incoming requests.
</blockquote></td>
</tr>
<tr valign="top">
<td>
@@ -439,7 +463,9 @@
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Net.HttpListener.Stop">Stop</a>
</b>()<blockquote><span class="NotEntered">Documentation for this section has not yet been entered.</span></blockquote></td>
</b>()<blockquote>
Stops receiving incoming requests.
</blockquote></td>
</tr>
</table>
</div>
@@ -459,8 +485,8 @@
</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Releases all resource used by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</td>
</tr>
</table>
</div>
@@ -503,8 +529,8 @@
<h3 id="C:WebSocketSharp.Net.HttpListener">HttpListener Constructor</h3>
<blockquote id="C:WebSocketSharp.Net.HttpListener:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Initializes a new instance of the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> class.
</p>
<h2>Syntax</h2>
<div class="Signature">public <b>HttpListener</b> ()</div>
<h2 class="Section">Remarks</h2>
@@ -519,8 +545,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.Abort">Abort Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.Abort:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Shuts down the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> immediately.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Abort</b> ()</div>
<h2 class="Section">Remarks</h2>
@@ -535,14 +561,15 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes">AuthenticationSchemes Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets or sets the scheme used to authenticate the clients.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="../WebSocketSharp.Net/AuthenticationSchemes.html">AuthenticationSchemes</a> <b>AuthenticationSchemes</b> { get; set; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
One of the <a href="../WebSocketSharp.Net/AuthenticationSchemes.html">WebSocketSharp.Net.AuthenticationSchemes</a> values that indicates the scheme used to
authenticate the clients. The default value is <a href="../WebSocketSharp.Net/AuthenticationSchemes.html#F:WebSocketSharp.Net.AuthenticationSchemes.Anonymous">AuthenticationSchemes.Anonymous</a>.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemes:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -555,14 +582,15 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate">AuthenticationSchemeSelectorDelegate Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets or sets the delegate called to determine the scheme used to authenticate clients.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="../WebSocketSharp.Net/AuthenticationSchemeSelector.html">AuthenticationSchemeSelector</a> <b>AuthenticationSchemeSelectorDelegate</b> { get; set; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
A <a href="../WebSocketSharp.Net/AuthenticationSchemeSelector.html">WebSocketSharp.Net.AuthenticationSchemeSelector</a> delegate that invokes the method(s) used to select
an authentication scheme. The default value is <tt>null</tt>.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.AuthenticationSchemeSelectorDelegate:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -575,8 +603,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">BeginGetContext Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Begins getting an incoming request information asynchronously.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a> <b>BeginGetContext</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.AsyncCallback">AsyncCallback</a> callback, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object">object</a> state)</div>
<h4 class="Subsection">Parameters</h4>
@@ -586,24 +614,43 @@
<i>callback</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.AsyncCallback">AsyncCallback</a> delegate that references the method(s)
called when the asynchronous operation completes.
</dd>
<dt>
<i>state</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object">object</a> that contains a user defined object to pass to the <i>callback</i> delegate.
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):Returns">
<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.IAsyncResult">IAsyncResult</a> that contains the status of the asynchronous operation.
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):Exceptions">
<table class="TypeDocumentation">
<tr>
<th>Type</th>
<th>Reason</th>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.InvalidOperationException">InvalidOperationException</a>
</td>
<td>
The <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> has not been started or is stopped currently.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
This asynchronous operation must be completed by calling the <a href="../WebSocketSharp.Net/HttpListener.html#M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)">HttpListener.EndGetContext(IAsyncResult)</a> method.
Typically, the method is invoked by the <i>callback</i> delegate.
</div>
<h2 class="Section">Requirements</h2>
<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)</div>
@@ -612,8 +659,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.Close">Close Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.Close:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Shuts down the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Close</b> ()</div>
<h2 class="Section">Remarks</h2>
@@ -628,8 +675,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)">EndGetContext Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Ends an asynchronous operation to get an incoming request information.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a> <b>EndGetContext</b> (<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a> asyncResult)</div>
<h4 class="Subsection">Parameters</h4>
@@ -639,18 +686,51 @@
<i>asyncResult</i>
</dt>
<dd>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.IAsyncResult">IAsyncResult</a> obtained by calling the <a href="../WebSocketSharp.Net/HttpListener.html#M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">HttpListener.BeginGetContext(AsyncCallback, object)</a> method.
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
A <a href="../WebSocketSharp.Net/HttpListenerContext.html">WebSocketSharp.Net.HttpListenerContext</a> that contains a client's request information.
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):Exceptions">
<table class="TypeDocumentation">
<tr>
<th>Type</th>
<th>Reason</th>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentNullException">ArgumentNullException</a>
</td>
<td>
<i>asyncResult</i> is <tt>null</tt>.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<i>asyncResult</i> was not obtained by calling the <a href="../WebSocketSharp.Net/HttpListener.html#M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">HttpListener.BeginGetContext(AsyncCallback, object)</a> method.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.InvalidOperationException">InvalidOperationException</a>
</td>
<td>
The EndGetContext method was already called for the specified <i>asyncResult</i>.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
This method completes an asynchronous operation started by calling the <a href="../WebSocketSharp.Net/HttpListener.html#M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)">HttpListener.BeginGetContext(AsyncCallback, object)</a> method.
</div>
<h2 class="Section">Requirements</h2>
<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)</div>
@@ -659,18 +739,36 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.GetContext">GetContext Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.GetContext:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets an incoming request information.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerContext.html">HttpListenerContext</a> <b>GetContext</b> ()</div>
<h4 class="Subsection">Returns</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.GetContext:Returns">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
A <a href="../WebSocketSharp.Net/HttpListenerContext.html">WebSocketSharp.Net.HttpListenerContext</a> that contains a client's request information.
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.HttpListener.GetContext:Exceptions">
<table class="TypeDocumentation">
<tr>
<th>Type</th>
<th>Reason</th>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.InvalidOperationException">InvalidOperationException</a>
</td>
<td>
The <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> does not have any URI prefixes to listen on.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.HttpListener.GetContext:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
This method waits for an incoming request and returns the request information
when received the request.
</div>
<h2 class="Section">Requirements</h2>
<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)</div>
@@ -699,14 +797,14 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.IsListening">IsListening Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.IsListening:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets a value indicating whether the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> has been started.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a> <b>IsListening</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.IsListening:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<tt>true</tt> if the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> has been started; otherwise, <tt>false</tt>.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsListening:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -719,14 +817,14 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.IsSupported">IsSupported Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.IsSupported:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets a value indicating whether the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> can be used with the current operating system.
</p>
<h2>Syntax</h2>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean">bool</a> <b>IsSupported</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.IsSupported:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
<tt>true</tt>.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.IsSupported:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -739,14 +837,14 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.Prefixes">Prefixes Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.Prefixes:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets the URI prefixes handled by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="../WebSocketSharp.Net/HttpListenerPrefixCollection.html">HttpListenerPrefixCollection</a> <b>Prefixes</b> { get; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.Prefixes:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
A <a href="../WebSocketSharp.Net/HttpListenerPrefixCollection.html">WebSocketSharp.Net.HttpListenerPrefixCollection</a> that contains the URI prefixes.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Prefixes:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -759,14 +857,14 @@
<h3 id="P:WebSocketSharp.Net.HttpListener.Realm">Realm Property</h3>
<blockquote id="P:WebSocketSharp.Net.HttpListener.Realm:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Gets or sets the name of the realm associated with the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> <b>Realm</b> { get; set; }</div>
<h4 class="Subsection">Value</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.HttpListener.Realm:Value">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</blockquote>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> that contains the name of the realm.
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.HttpListener.Realm:Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -779,8 +877,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.Start">Start Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.Start:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Starts to receive incoming requests.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Start</b> ()</div>
<h2 class="Section">Remarks</h2>
@@ -795,8 +893,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.Stop">Stop Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.Stop:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Stops receiving incoming requests.
</p>
<h2>Syntax</h2>
<div class="Signature">public <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Stop</b> ()</div>
<h2 class="Section">Remarks</h2>
@@ -811,8 +909,8 @@
<h3 id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose">System.IDisposable.Dispose Method</h3>
<blockquote id="M:WebSocketSharp.Net.HttpListener.System#IDisposable#Dispose:member">
<p class="Summary">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</p>
Releases all resource used by the <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a>.
</p>
<h2>Syntax</h2>
<div class="Signature">
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>System.IDisposable.Dispose</b> ()</div>

View File

@@ -207,16 +207,16 @@
<a href="./AuthenticationSchemes.html">AuthenticationSchemes</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Contains the values of the schemes for authentication.
</td>
</tr>
<tr valign="top">
<td>
<a href="./AuthenticationSchemeSelector.html">AuthenticationSchemeSelector</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Selects the authentication scheme for a <a href="../WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> instance.
</td>
</tr>
<tr valign="top">
<td>
@@ -247,8 +247,8 @@
<a href="./HttpListener.html">HttpListener</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Provides a simple, programmatically controlled HTTP listener.
</td>
</tr>
<tr valign="top">
<td>

View File

@@ -299,16 +299,16 @@
<a href="WebSocketSharp.Net/AuthenticationSchemes.html">AuthenticationSchemes</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Contains the values of the schemes for authentication.
</td>
</tr>
<tr valign="top">
<td>
<a href="WebSocketSharp.Net/AuthenticationSchemeSelector.html">AuthenticationSchemeSelector</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Selects the authentication scheme for a <a href="./WebSocketSharp.Net/HttpListener.html">WebSocketSharp.Net.HttpListener</a> instance.
</td>
</tr>
<tr valign="top">
<td>
@@ -339,8 +339,8 @@
<a href="WebSocketSharp.Net/HttpListener.html">HttpListener</a>
</td>
<td>
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</td>
Provides a simple, programmatically controlled HTTP listener.
</td>
</tr>
<tr valign="top">
<td>

View File

@@ -14,9 +14,15 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<param name="httpRequest">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<param name="httpRequest">
A <see cref="T:WebSocketSharp.Net.HttpListenerRequest" /> that contains a client request information.
</param>
<summary>
Selects the authentication scheme for a <see cref="T:WebSocketSharp.Net.HttpListener" /> instance.
</summary>
<returns>
One of the <see cref="T:WebSocketSharp.Net.AuthenticationSchemes" /> values that indicates the scheme used to authenticate the specified client request.
</returns>
<remarks>To be added.</remarks>
</Docs>
</Type>

View File

@@ -13,7 +13,9 @@
</Attribute>
</Attributes>
<Docs>
<summary>To be added.</summary>
<summary>
Contains the values of the schemes for authentication.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -25,7 +27,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates anonymous authentication.
</summary>
</Docs>
</Member>
<Member MemberName="Basic">
@@ -36,7 +40,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates basic authentication.
</summary>
</Docs>
</Member>
<Member MemberName="Digest">
@@ -47,7 +53,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates digest authentication.
</summary>
</Docs>
</Member>
<Member MemberName="IntegratedWindowsAuthentication">
@@ -58,7 +66,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates Windows authentication.
</summary>
</Docs>
</Member>
<Member MemberName="Negotiate">
@@ -69,7 +79,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates negotiating with the client to determine the authentication scheme.
</summary>
</Docs>
</Member>
<Member MemberName="None">
@@ -80,7 +92,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates that no authentication is allowed.
</summary>
</Docs>
</Member>
<Member MemberName="Ntlm">
@@ -91,7 +105,9 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>
Indicates NTLM authentication.
</summary>
</Docs>
</Member>
</Members>

View File

@@ -13,7 +13,9 @@
</Interface>
</Interfaces>
<Docs>
<summary>To be added.</summary>
<summary>
Provides a simple, programmatically controlled HTTP listener.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -23,7 +25,9 @@
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.HttpListener" /> class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -36,7 +40,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Shuts down the <see cref="T:WebSocketSharp.Net.HttpListener" /> immediately.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -48,8 +54,13 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemes</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets or sets the scheme used to authenticate the clients.
</summary>
<value>
One of the <see cref="T:WebSocketSharp.Net.AuthenticationSchemes" /> values that indicates the scheme used to
authenticate the clients. The default value is <see cref="F:WebSocketSharp.Net.AuthenticationSchemes.Anonymous" />.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -61,8 +72,13 @@
<ReturnType>WebSocketSharp.Net.AuthenticationSchemeSelector</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets or sets the delegate called to determine the scheme used to authenticate clients.
</summary>
<value>
A <see cref="T:WebSocketSharp.Net.AuthenticationSchemeSelector" /> delegate that invokes the method(s) used to select
an authentication scheme. The default value is <see langword="null" />.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -78,11 +94,26 @@
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">To be added.</param>
<param name="state">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<param name="callback">
An <see cref="T:System.AsyncCallback" /> delegate that references the method(s)
called when the asynchronous operation completes.
</param>
<param name="state">
An <see cref="T:System.Object" /> that contains a user defined object to pass to the <paramref name="callback" /> delegate.
</param>
<summary>
Begins getting an incoming request information asynchronously.
</summary>
<returns>
An <see cref="T:System.IAsyncResult" /> that contains the status of the asynchronous operation.
</returns>
<remarks>
This asynchronous operation must be completed by calling the <see cref="M:WebSocketSharp.Net.HttpListener.EndGetContext(System.IAsyncResult)" /> method.
Typically, the method is invoked by the <paramref name="callback" /> delegate.
</remarks>
<exception cref="T:System.InvalidOperationException">
The <see cref="T:WebSocketSharp.Net.HttpListener" /> has not been started or is stopped currently.
</exception>
</Docs>
</Member>
<Member MemberName="Close">
@@ -94,7 +125,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Shuts down the <see cref="T:WebSocketSharp.Net.HttpListener" />.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -109,10 +142,27 @@
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<param name="asyncResult">
An <see cref="T:System.IAsyncResult" /> obtained by calling the <see cref="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)" /> method.
</param>
<summary>
Ends an asynchronous operation to get an incoming request information.
</summary>
<returns>
A <see cref="T:WebSocketSharp.Net.HttpListenerContext" /> that contains a client's request information.
</returns>
<remarks>
This method completes an asynchronous operation started by calling the <see cref="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)" /> method.
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="asyncResult" /> is <see langword="null" />.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="asyncResult" /> was not obtained by calling the <see cref="M:WebSocketSharp.Net.HttpListener.BeginGetContext(System.AsyncCallback,System.Object)" /> method.
</exception>
<exception cref="T:System.InvalidOperationException">
The EndGetContext method was already called for the specified <paramref name="asyncResult" />.
</exception>
</Docs>
</Member>
<Member MemberName="GetContext">
@@ -124,9 +174,19 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<summary>
Gets an incoming request information.
</summary>
<returns>
A <see cref="T:WebSocketSharp.Net.HttpListenerContext" /> that contains a client's request information.
</returns>
<remarks>
This method waits for an incoming request and returns the request information
when received the request.
</remarks>
<exception cref="T:System.InvalidOperationException">
The <see cref="T:WebSocketSharp.Net.HttpListener" /> does not have any URI prefixes to listen on.
</exception>
</Docs>
</Member>
<Member MemberName="IgnoreWriteExceptions">
@@ -150,8 +210,12 @@
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets a value indicating whether the <see cref="T:WebSocketSharp.Net.HttpListener" /> has been started.
</summary>
<value>
<c>true</c> if the <see cref="T:WebSocketSharp.Net.HttpListener" /> has been started; otherwise, <c>false</c>.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -163,8 +227,12 @@
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets a value indicating whether the <see cref="T:WebSocketSharp.Net.HttpListener" /> can be used with the current operating system.
</summary>
<value>
<c>true</c>.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -176,8 +244,12 @@
<ReturnType>WebSocketSharp.Net.HttpListenerPrefixCollection</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets the URI prefixes handled by the <see cref="T:WebSocketSharp.Net.HttpListener" />.
</summary>
<value>
A <see cref="T:WebSocketSharp.Net.HttpListenerPrefixCollection" /> that contains the URI prefixes.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -189,8 +261,12 @@
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>
Gets or sets the name of the realm associated with the <see cref="T:WebSocketSharp.Net.HttpListener" />.
</summary>
<value>
A <see cref="T:System.String" /> that contains the name of the realm.
</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -203,7 +279,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Starts to receive incoming requests.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -216,7 +294,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Stops receiving incoming requests.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -229,7 +309,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<summary>
Releases all resource used by the <see cref="T:WebSocketSharp.Net.HttpListener" />.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>

View File

@@ -1,6 +1,6 @@
<Overview>
<Assemblies>
<Assembly Name="websocket-sharp" Version="1.0.2.41019">
<Assembly Name="websocket-sharp" Version="1.0.2.32056">
<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>
<Attribute>