Fix due to the modified WebHeaderCollection.cs

This commit is contained in:
sta
2013-03-19 19:45:50 +09:00
parent e370d0f879
commit 01d97d02b6
70 changed files with 1824 additions and 688 deletions

View File

@@ -472,7 +472,8 @@
<b>
<a href="#M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData</a>
</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>)<blockquote>
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data needed to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a>.
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data to need to
serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</blockquote></td>
</tr>
<tr valign="top">
@@ -661,7 +662,8 @@
</a>
</td>
<td>
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data needed to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a>.
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data to need to
serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</td>
</tr>
</table>
@@ -755,16 +757,41 @@
<i>serializationInfo</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that holds the serialized object data.
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 data to need to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</dd>
<dt>
<i>streamingContext</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> that contains the contextual information about the source or destination.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.StreamingContext">System.Runtime.Serialization.StreamingContext</a> that contains the source of the serialized stream associated with the new <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a>.
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):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>serializationInfo</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>
An element with the specified name is not found in <i>serializationInfo</i>.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="C:WebSocketSharp.Net.WebHeaderCollection(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -804,7 +831,8 @@
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentNullException">ArgumentNullException</a>
</td>
<td>
<i>header</i> is <tt>null</tt> or a <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>.
<i>header</i> is <tt>null</tt>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>, or
the name part of <i>header</i> is <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>.
</td>
</tr>
<tr valign="top">
@@ -812,7 +840,37 @@
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<i>header</i> does not contain a colon.
<p>
<i>header</i> does not contain a colon.
</p>
<p>
-or-
</p>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
The name or value part of <i>header</i> contains invalid characters.
</p>
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of the value part of <i>header</i> is greater than 65535.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow the <i>header</i>.
</td>
</tr>
</table>
@@ -840,7 +898,7 @@
<i>header</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> that contains the name of the request header to add.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> is a request header to add.
</dd>
<dt>
<i>value</i>
@@ -850,6 +908,47 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String):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.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpRequestHeader,System.String):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -873,7 +972,7 @@
<i>header</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> that contains the name of the response header to add.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> is a response header to add.
</dd>
<dt>
<i>value</i>
@@ -883,6 +982,47 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String):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.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Add(System.Net.HttpResponseHeader,System.String):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -929,16 +1069,13 @@
</td>
<td>
<p>
<i>name</i> is <tt>null</tt> or a <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>.
<i>name</i> or <i>value</i> contains invalid characters.
</p>
<p>
-or-
</p>
<p>
<i>name</i> is a restricted header that must be set with a property setting.
</p>
<p>
-or-
<i>name</i> is a restricted header name.
</p>
</td>
</tr>
@@ -948,6 +1085,22 @@
</td>
<td>
The length of <i>value</i> is greater than 65535.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentNullException">ArgumentNullException</a>
</td>
<td>
<i>name</i> is <tt>null</tt> or <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow the header <i>name</i>.
</td>
</tr>
</table>
@@ -997,17 +1150,32 @@
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>headerName</i> is <tt>null</tt>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>, or
contains invalid characters.
</p>
<p>
-or-
</p>
<p>
<i>headerValue</i> contains invalid characters.
</p>
<i>headerName</i> or <i>headerValue</i> contains invalid characters.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentNullException">ArgumentNullException</a>
</td>
<td>
<i>headerName</i> is <tt>null</tt> or <a href="http://www.go-mono.com/docs/monodoc.ashx?link=F:System.String.Empty">string.Empty</a>.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>headerValue</i> is greater than 65535.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow the <i>headerName</i>.
</td>
</tr>
</table>
</blockquote>
@@ -1194,7 +1362,8 @@
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData Method</h3>
<blockquote id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):member">
<p class="Summary">
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data needed to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a>.
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data to need to
serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</p>
<h2>Syntax</h2>
<div class="Signature">public override <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>GetObjectData</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>
@@ -1205,7 +1374,7 @@
<i>serializationInfo</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that holds the serialized object data.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that holds the data to need to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</dd>
<dt>
<i>streamingContext</i>
@@ -1215,6 +1384,23 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):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>serializationInfo</i> is <tt>null</tt>.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1421,7 +1607,7 @@
<i>header</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> that contains a request header name.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> that indicates a request header.
</dd>
</dl>
</blockquote>
@@ -1429,6 +1615,47 @@
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader):Value">
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> that contains the value of the specified request <i>header</i>.
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpRequestHeader):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1455,7 +1682,7 @@
<i>header</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> that contains a response header name.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> that indicates a response header.
</dd>
</dl>
</blockquote>
@@ -1463,6 +1690,47 @@
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader):Value">
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String">string</a> that contains the value of the specified response <i>header</i>.
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="P:WebSocketSharp.Net.WebHeaderCollection.Item(System.Net.HttpResponseHeader):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1538,6 +1806,31 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> values.
</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>header</i> is a restricted header.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpRequestHeader):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1565,6 +1858,31 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> values.
</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>header</i> is a restricted header.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Remove(System.Net.HttpResponseHeader):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1623,6 +1941,14 @@
</p>
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow the header <i>name</i>.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
@@ -1658,6 +1984,47 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpRequestHeader">System.Net.HttpRequestHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpRequestHeader,System.String):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1691,6 +2058,47 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String):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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow any of <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Net.HttpResponseHeader">System.Net.HttpResponseHeader</a> values.
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentException">ArgumentException</a>
</td>
<td>
<p>
<i>header</i> is a restricted header.
</p>
<p>
-or-
</p>
<p>
<i>value</i> contains invalid characters.
</p>
</td>
</tr>
<tr valign="top">
<td>
<a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.ArgumentOutOfRangeException">ArgumentOutOfRangeException</a>
</td>
<td>
The length of <i>value</i> is greater than 65535.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.Set(System.Net.HttpResponseHeader,System.String):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
@@ -1761,6 +2169,14 @@
</td>
<td>
The length of <i>value</i> is greater than 65535.
</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 current <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> instance does not allow the header <i>name</i>.
</td>
</tr>
</table>
@@ -1777,7 +2193,8 @@
<h3 id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">System.Runtime.Serialization.ISerializable.GetObjectData Method</h3>
<blockquote id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):member">
<p class="Summary">
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data needed to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a>.
Populates the specified <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> with the data to need to
serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</p>
<h2>Syntax</h2>
<div class="Signature">
@@ -1789,7 +2206,7 @@
<i>serializationInfo</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that holds the serialized object data.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Runtime.Serialization.SerializationInfo">System.Runtime.Serialization.SerializationInfo</a> that holds the data to need to serialize the <a href="../WebSocketSharp.Net/WebHeaderCollection.html">WebSocketSharp.Net.WebHeaderCollection</a> object.
</dd>
<dt>
<i>streamingContext</i>
@@ -1799,6 +2216,23 @@
</dd>
</dl>
</blockquote>
<h4 class="Subsection">Exceptions</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):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>serializationInfo</i> is <tt>null</tt>.
</td>
</tr>
</table>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Net.WebHeaderCollection.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>

View File

@@ -582,9 +582,9 @@
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64})">Times</a>
</b>(<i>this</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.Action`1">Action&lt;ulong&gt;</a>)<blockquote>
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
<a href="#M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32})">Times</a>
</b>(<i>this</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.Action`1">Action&lt;int&gt;</a>)<blockquote>
Executes the specified Action&lt;int&gt; delegate <i>n</i> times.
</blockquote></td>
</tr>
<tr valign="top">
@@ -604,9 +604,9 @@
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64})">Times</a>
</b>(<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;ulong&gt;</a>)<blockquote>
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
<a href="#M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64})">Times</a>
</b>(<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;long&gt;</a>)<blockquote>
Executes the specified Action&lt;long&gt; delegate <i>n</i> times.
</blockquote></td>
</tr>
<tr valign="top">
@@ -626,9 +626,9 @@
</td>
<td colspan="2">
<b>
<a href="#M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64})">Times</a>
</b>(<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;ulong&gt;</a>)<blockquote>
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
<a href="#M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32})">Times</a>
</b>(<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a>, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;uint&gt;</a>)<blockquote>
Executes the specified Action&lt;uint&gt; delegate <i>n</i> times.
</blockquote></td>
</tr>
<tr valign="top">
@@ -2011,13 +2011,13 @@
<i>n</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> that contains the number of times to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that contains the method(s) to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that references the method(s) to execute.
</dd>
</dl>
</blockquote>
@@ -2030,37 +2030,37 @@
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):member">
<h3 id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32}):member">
<p class="Summary">
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
Executes the specified Action&lt;int&gt; delegate <i>n</i> times.
</p>
<h2>Syntax</h2>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;ulong&gt;</a> act)</div>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;int&gt;</a> act)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):Parameters">
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32}):Parameters">
<dl>
<dt>
<i>n</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> that contains the number of times to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An Action&lt;ulong&gt; delegate that contains the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> parameter to pass to this method(s) contains the zero-based count of iteration.
An Action&lt;int&gt; delegate that references the method(s) to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32">int</a> parameter to pass to the method(s) is the zero-based count of iteration.
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):Remarks">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32}):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64}):Version Information">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32}):Version Information">
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
@@ -2078,13 +2078,13 @@
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that contains the method(s) to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that references the method(s) to execute.
</dd>
</dl>
</blockquote>
@@ -2097,37 +2097,37 @@
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):member">
<h3 id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64}):member">
<p class="Summary">
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
Executes the specified Action&lt;long&gt; delegate <i>n</i> times.
</p>
<h2>Syntax</h2>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;ulong&gt;</a> act)</div>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;long&gt;</a> act)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):Parameters">
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64}):Parameters">
<dl>
<dt>
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An Action&lt;ulong&gt; delegate that contains the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> parameter to pass to this method(s) contains the zero-based count of iteration.
An Action&lt;long&gt; delegate that references the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int64">long</a> parameter to pass to the method(s) is the zero-based count of iteration.
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):Remarks">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64}):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64}):Version Information">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64}):Version Information">
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
@@ -2145,13 +2145,13 @@
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that contains the method(s) to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that references the method(s) to execute.
</dd>
</dl>
</blockquote>
@@ -2164,37 +2164,37 @@
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):member">
<h3 id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32})">Times Method</h3>
<blockquote id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32}):member">
<p class="Summary">
Executes the specified Action&lt;ulong&gt; delegate <i>n</i> times.
Executes the specified Action&lt;uint&gt; delegate <i>n</i> times.
</p>
<h2>Syntax</h2>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;ulong&gt;</a> act)</div>
<div class="Signature">public static <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Void">void</a> <b>Times</b> (<i>this</i> <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> n, <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action`1">Action&lt;uint&gt;</a> act)</div>
<h4 class="Subsection">Parameters</h4>
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):Parameters">
<blockquote class="SubsectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32}):Parameters">
<dl>
<dt>
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An Action&lt;ulong&gt; delegate that contains the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> parameter to pass to this method(s) contains the zero-based count of iteration.
An Action&lt;uint&gt; delegate that references the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt32">uint</a> parameter to pass to the method(s) is the zero-based count of iteration.
</dd>
</dl>
</blockquote>
<h2 class="Section">Remarks</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):Remarks">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32}):Remarks">
<span class="NotEntered">Documentation for this section has not yet been entered.</span>
</div>
<h2 class="Section">Requirements</h2>
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64}):Version Information">
<div class="SectionBox" id="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32}):Version Information">
<b>Namespace: </b>WebSocketSharp<br /><b>Assembly: </b>websocket-sharp (in websocket-sharp.dll)</div>
<hr size="1" />
</blockquote>
@@ -2212,13 +2212,13 @@
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that contains the method(s) to execute.
An <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Action">Action</a> delegate that references the method(s) to execute.
</dd>
</dl>
</blockquote>
@@ -2245,14 +2245,14 @@
<i>n</i>
</dt>
<dd>
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> that contains the number of times to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> is the number of times to execute.
</dd>
<dt>
<i>act</i>
</dt>
<dd>
An Action&lt;ulong&gt; delegate that contains the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> parameter to pass to this method(s) contains the zero-based count of iteration.
An Action&lt;ulong&gt; delegate that references the method(s) to execute.
A <a href="http://www.go-mono.com/docs/monodoc.ashx?link=T:System.UInt64">ulong</a> parameter to pass to this method(s) is the zero-based count of iteration.
</dd>
</dl>
</blockquote>

View File

@@ -46,16 +46,22 @@
</Parameters>
<Docs>
<param name="serializationInfo">
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data.
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the data to need to serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> object.
</param>
<param name="streamingContext">
A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the contextual information about the source or destination.
A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream associated with the new <see cref="T:WebSocketSharp.Net.WebHeaderCollection" />.
</param>
<summary>
Initializes a new instance of the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> class
with the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="serializationInfo" /> is <see langword="null" />.
</exception>
<exception cref="T:System.ArgumentException">
An element with the specified name is not found in <paramref name="serializationInfo" />.
</exception>
</Docs>
</Member>
<Member MemberName="Add">
@@ -77,10 +83,31 @@
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="header" /> is <see langword="null" /> or a <see cref="F:System.String.Empty" />.
<paramref name="header" /> is <see langword="null" />, <see cref="F:System.String.Empty" />, or
the name part of <paramref name="header" /> is <see cref="F:System.String.Empty" />.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="header" /> does not contain a colon.
<para>
<paramref name="header" /> does not contain a colon.
</para>
<para>
-or-
</para>
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
The name or value part of <paramref name="header" /> contains invalid characters.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of the value part of <paramref name="header" /> is greater than 65535.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow the <paramref name="header" />.
</exception>
</Docs>
</Member>
@@ -97,7 +124,7 @@
</Parameters>
<Docs>
<param name="header">
A <see cref="T:System.Net.HttpRequestHeader" /> that contains the name of the request header to add.
A <see cref="T:System.Net.HttpRequestHeader" /> is a request header to add.
</param>
<param name="value">
A <see cref="T:System.String" /> that contains the value of the header to add.
@@ -106,6 +133,23 @@
Adds the specified request <paramref name="header" /> with the specified <paramref name="value" /> to the collection.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpRequestHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
</Docs>
</Member>
<Member MemberName="Add">
@@ -121,7 +165,7 @@
</Parameters>
<Docs>
<param name="header">
A <see cref="T:System.Net.HttpResponseHeader" /> that contains the name of the response header to add.
A <see cref="T:System.Net.HttpResponseHeader" /> is a response header to add.
</param>
<param name="value">
A <see cref="T:System.String" /> that contains the value of the header to add.
@@ -130,6 +174,23 @@
Adds the specified response <paramref name="header" /> with the specified <paramref name="value" /> to the collection.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpResponseHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
</Docs>
</Member>
<Member MemberName="Add">
@@ -156,21 +217,24 @@
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="name" /> is <see langword="null" /> or a <see cref="F:System.String.Empty" />.
<paramref name="name" /> or <paramref name="value" /> contains invalid characters.
</para>
<para>
-or-
</para>
<para>
<paramref name="name" /> is a restricted header that must be set with a property setting.
</para>
<para>
-or-
<paramref name="name" /> is a restricted header name.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="name" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow the header <paramref name="name" />.
</exception>
</Docs>
</Member>
<Member MemberName="AddWithoutValidate">
@@ -196,17 +260,17 @@
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="headerName" /> is <see langword="null" />, <see cref="F:System.String.Empty" />, or
contains invalid characters.
</para>
<para>
-or-
</para>
<para>
<paramref name="headerValue" /> contains invalid characters.
</para>
</exception>
<paramref name="headerName" /> or <paramref name="headerValue" /> contains invalid characters.
</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="headerName" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="headerValue" /> is greater than 65535.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow the <paramref name="headerName" />.
</exception>
</Docs>
</Member>
<Member MemberName="AllKeys">
@@ -360,15 +424,19 @@
</Parameters>
<Docs>
<param name="serializationInfo">
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data.
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data to need to serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> object.
</param>
<param name="streamingContext">
A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for the serialization.
</param>
<summary>
Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" />.
Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data to need to
serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> object.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="serializationInfo" /> is <see langword="null" />.
</exception>
</Docs>
</Member>
<Member MemberName="GetValues">
@@ -491,7 +559,7 @@
</Parameters>
<Docs>
<param name="header">
A <see cref="T:System.Net.HttpRequestHeader" /> that contains a request header name.
A <see cref="T:System.Net.HttpRequestHeader" /> that indicates a request header.
</param>
<summary>
Gets or sets the specified request <paramref name="header" /> in the collection.
@@ -500,6 +568,23 @@
A <see cref="T:System.String" /> that contains the value of the specified request <paramref name="header" />.
</value>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpRequestHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
</Docs>
</Member>
<Member MemberName="Item">
@@ -514,7 +599,7 @@
</Parameters>
<Docs>
<param name="header">
A <see cref="T:System.Net.HttpResponseHeader" /> that contains a response header name.
A <see cref="T:System.Net.HttpResponseHeader" /> that indicates a response header.
</param>
<summary>
Gets or sets the specified response <paramref name="header" /> in the collection.
@@ -523,6 +608,23 @@
A <see cref="T:System.String" /> that contains the value of the specified response <paramref name="header" />.
</value>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpResponseHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
</Docs>
</Member>
<Member MemberName="Keys">
@@ -581,6 +683,12 @@
Removes the specified header from the collection.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpRequestHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="header" /> is a restricted header.
</exception>
</Docs>
</Member>
<Member MemberName="Remove">
@@ -601,6 +709,12 @@
Removes the specified header from the collection.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpResponseHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="header" /> is a restricted header.
</exception>
</Docs>
</Member>
<Member MemberName="Remove">
@@ -635,6 +749,9 @@
<paramref name="name" /> is a restricted header name.
</para>
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow the header <paramref name="name" />.
</exception>
</Docs>
</Member>
<Member MemberName="Set">
@@ -659,6 +776,23 @@
Sets the specified header to the specified value.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpRequestHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
</Docs>
</Member>
<Member MemberName="Set">
@@ -683,6 +817,23 @@
Sets the specified header to the specified value.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow any of <see cref="T:System.Net.HttpResponseHeader" /> values.
</exception>
<exception cref="T:System.ArgumentException">
<para>
<paramref name="header" /> is a restricted header.
</para>
<para>
-or-
</para>
<para>
<paramref name="value" /> contains invalid characters.
</para>
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
</Docs>
</Member>
<Member MemberName="Set">
@@ -724,6 +875,9 @@
<exception cref="T:System.ArgumentOutOfRangeException">
The length of <paramref name="value" /> is greater than 65535.
</exception>
<exception cref="T:System.InvalidOperationException">
The current <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> instance does not allow the header <paramref name="name" />.
</exception>
</Docs>
</Member>
<Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">
@@ -739,15 +893,19 @@
</Parameters>
<Docs>
<param name="serializationInfo">
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data.
A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data to need to serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> object.
</param>
<param name="streamingContext">
A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for the serialization.
</param>
<summary>
Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" />.
Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data to need to
serialize the <see cref="T:WebSocketSharp.Net.WebHeaderCollection" /> object.
</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="serializationInfo" /> is <see langword="null" />.
</exception>
</Docs>
</Member>
<Member MemberName="ToByteArray">

View File

@@ -894,10 +894,10 @@
</Parameters>
<Docs>
<param name="n">
An <see cref="T:System.Int32" /> that contains the number of times to execute.
An <see cref="T:System.Int32" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -906,26 +906,26 @@
</Docs>
</Member>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this int n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int32 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this int n, Action&lt;int&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int32 n, class System.Action`1&lt;int32&gt; act) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.Int32" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.Int32&gt;" />
</Parameters>
<Docs>
<param name="n">
An <see cref="T:System.Int32" /> that contains the number of times to execute.
An <see cref="T:System.Int32" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;int&gt;</b> delegate that references the method(s) to execute.
An <see cref="T:System.Int32" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;int&gt;</b> delegate <paramref name="n" /> times.
</summary>
<remarks>To be added.</remarks>
</Docs>
@@ -943,10 +943,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.Int64" /> that contains the number of times to execute.
A <see cref="T:System.Int64" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -955,26 +955,26 @@
</Docs>
</Member>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this long n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int64 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this long n, Action&lt;long&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int64 n, class System.Action`1&lt;int64&gt; act) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.Int64" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.Int64&gt;" />
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.Int64" /> that contains the number of times to execute.
A <see cref="T:System.Int64" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;long&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.Int64" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;long&gt;</b> delegate <paramref name="n" /> times.
</summary>
<remarks>To be added.</remarks>
</Docs>
@@ -992,10 +992,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt32" /> that contains the number of times to execute.
A <see cref="T:System.UInt32" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1004,26 +1004,26 @@
</Docs>
</Member>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this uint n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(unsigned int32 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this uint n, Action&lt;uint&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(unsigned int32 n, class System.Action`1&lt;unsigned int32&gt; act) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.UInt32" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.UInt32&gt;" />
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt32" /> that contains the number of times to execute.
A <see cref="T:System.UInt32" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;uint&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.UInt32" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;uint&gt;</b> delegate <paramref name="n" /> times.
</summary>
<remarks>To be added.</remarks>
</Docs>
@@ -1041,10 +1041,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt64" /> that contains the number of times to execute.
A <see cref="T:System.UInt64" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1065,11 +1065,11 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt64" /> that contains the number of times to execute.
A <see cref="T:System.UInt64" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;ulong&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.

View File

@@ -1,6 +1,6 @@
<Overview>
<Assemblies>
<Assembly Name="websocket-sharp" Version="1.0.2.28338">
<Assembly Name="websocket-sharp" Version="1.0.2.35266">
<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>
@@ -1004,10 +1004,10 @@
</Parameters>
<Docs>
<param name="n">
An <see cref="T:System.Int32" /> that contains the number of times to execute.
An <see cref="T:System.Int32" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1021,29 +1021,29 @@
<Target Type="T:System.Int32" />
</Targets>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this int n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int32 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this int n, Action&lt;int&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int32 n, class System.Action`1&lt;int32&gt; act) cil managed" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.Int32" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.Int32&gt;" />
</Parameters>
<Docs>
<param name="n">
An <see cref="T:System.Int32" /> that contains the number of times to execute.
An <see cref="T:System.Int32" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;int&gt;</b> delegate that references the method(s) to execute.
An <see cref="T:System.Int32" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;int&gt;</b> delegate <paramref name="n" /> times.
</summary>
</Docs>
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.UInt64})" />
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.Int32,System.Action{System.Int32})" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
@@ -1063,10 +1063,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.Int64" /> that contains the number of times to execute.
A <see cref="T:System.Int64" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1080,29 +1080,29 @@
<Target Type="T:System.Int64" />
</Targets>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this long n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int64 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this long n, Action&lt;long&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(int64 n, class System.Action`1&lt;int64&gt; act) cil managed" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.Int64" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.Int64&gt;" />
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.Int64" /> that contains the number of times to execute.
A <see cref="T:System.Int64" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;long&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.Int64" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;long&gt;</b> delegate <paramref name="n" /> times.
</summary>
</Docs>
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.UInt64})" />
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.Int64,System.Action{System.Int64})" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
@@ -1122,10 +1122,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt32" /> that contains the number of times to execute.
A <see cref="T:System.UInt32" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1139,29 +1139,29 @@
<Target Type="T:System.UInt32" />
</Targets>
<Member MemberName="Times">
<MemberSignature Language="C#" Value="public static void Times (this uint n, Action&lt;ulong&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(unsigned int32 n, class System.Action`1&lt;unsigned int64&gt; act) cil managed" />
<MemberSignature Language="C#" Value="public static void Times (this uint n, Action&lt;uint&gt; act);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Times(unsigned int32 n, class System.Action`1&lt;unsigned int32&gt; act) cil managed" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="n" Type="System.UInt32" RefType="this" />
<Parameter Name="act" Type="System.Action&lt;System.UInt64&gt;" />
<Parameter Name="act" Type="System.Action&lt;System.UInt32&gt;" />
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt32" /> that contains the number of times to execute.
A <see cref="T:System.UInt32" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;uint&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.UInt32" /> parameter to pass to the method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.
Executes the specified <b>Action&lt;uint&gt;</b> delegate <paramref name="n" /> times.
</summary>
</Docs>
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt64})" />
<Link Type="WebSocketSharp.Ext" Member="M:WebSocketSharp.Ext.Times(System.UInt32,System.Action{System.UInt32})" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
@@ -1181,10 +1181,10 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt64" /> that contains the number of times to execute.
A <see cref="T:System.UInt64" /> is the number of times to execute.
</param>
<param name="act">
An <see cref="T:System.Action" /> delegate that contains the method(s) to execute.
An <see cref="T:System.Action" /> delegate that references the method(s) to execute.
</param>
<summary>
Executes the specified <see cref="T:System.Action" /> delegate <paramref name="n" /> times.
@@ -1210,11 +1210,11 @@
</Parameters>
<Docs>
<param name="n">
A <see cref="T:System.UInt64" /> that contains the number of times to execute.
A <see cref="T:System.UInt64" /> is the number of times to execute.
</param>
<param name="act">
An <b>Action&lt;ulong&gt;</b> delegate that contains the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) contains the zero-based count of iteration.
An <b>Action&lt;ulong&gt;</b> delegate that references the method(s) to execute.
A <see cref="T:System.UInt64" /> parameter to pass to this method(s) is the zero-based count of iteration.
</param>
<summary>
Executes the specified <b>Action&lt;ulong&gt;</b> delegate <paramref name="n" /> times.