diff --git a/Example/bin/Debug_Ubuntu/example.exe b/Example/bin/Debug_Ubuntu/example.exe
index c9867a04..33b0f2bf 100755
Binary files a/Example/bin/Debug_Ubuntu/example.exe and b/Example/bin/Debug_Ubuntu/example.exe differ
diff --git a/Example/bin/Debug_Ubuntu/example.exe.mdb b/Example/bin/Debug_Ubuntu/example.exe.mdb
index 2ba75d24..44c70af6 100644
Binary files a/Example/bin/Debug_Ubuntu/example.exe.mdb and b/Example/bin/Debug_Ubuntu/example.exe.mdb differ
diff --git a/Example/bin/Debug_Ubuntu/websocket-sharp.dll b/Example/bin/Debug_Ubuntu/websocket-sharp.dll
index 15945d58..b648c1c6 100755
Binary files a/Example/bin/Debug_Ubuntu/websocket-sharp.dll and b/Example/bin/Debug_Ubuntu/websocket-sharp.dll differ
diff --git a/Example/bin/Debug_Ubuntu/websocket-sharp.dll.mdb b/Example/bin/Debug_Ubuntu/websocket-sharp.dll.mdb
index 99628d61..98865623 100644
Binary files a/Example/bin/Debug_Ubuntu/websocket-sharp.dll.mdb and b/Example/bin/Debug_Ubuntu/websocket-sharp.dll.mdb differ
diff --git a/Example1/bin/Debug_Ubuntu/example1.exe b/Example1/bin/Debug_Ubuntu/example1.exe
index 145ec9e9..80a52c8f 100755
Binary files a/Example1/bin/Debug_Ubuntu/example1.exe and b/Example1/bin/Debug_Ubuntu/example1.exe differ
diff --git a/Example1/bin/Debug_Ubuntu/example1.exe.mdb b/Example1/bin/Debug_Ubuntu/example1.exe.mdb
index f4f87c08..b56e9a95 100644
Binary files a/Example1/bin/Debug_Ubuntu/example1.exe.mdb and b/Example1/bin/Debug_Ubuntu/example1.exe.mdb differ
diff --git a/Example1/bin/Debug_Ubuntu/websocket-sharp.dll b/Example1/bin/Debug_Ubuntu/websocket-sharp.dll
index 15945d58..b648c1c6 100755
Binary files a/Example1/bin/Debug_Ubuntu/websocket-sharp.dll and b/Example1/bin/Debug_Ubuntu/websocket-sharp.dll differ
diff --git a/Example1/bin/Debug_Ubuntu/websocket-sharp.dll.mdb b/Example1/bin/Debug_Ubuntu/websocket-sharp.dll.mdb
index 99628d61..98865623 100644
Binary files a/Example1/bin/Debug_Ubuntu/websocket-sharp.dll.mdb and b/Example1/bin/Debug_Ubuntu/websocket-sharp.dll.mdb differ
diff --git a/Example2/bin/Debug_Ubuntu/example2.exe b/Example2/bin/Debug_Ubuntu/example2.exe
index f6233c7e..eb0e0329 100755
Binary files a/Example2/bin/Debug_Ubuntu/example2.exe and b/Example2/bin/Debug_Ubuntu/example2.exe differ
diff --git a/Example2/bin/Debug_Ubuntu/example2.exe.mdb b/Example2/bin/Debug_Ubuntu/example2.exe.mdb
index a0759633..439888a4 100644
Binary files a/Example2/bin/Debug_Ubuntu/example2.exe.mdb and b/Example2/bin/Debug_Ubuntu/example2.exe.mdb differ
diff --git a/Example2/bin/Debug_Ubuntu/websocket-sharp.dll b/Example2/bin/Debug_Ubuntu/websocket-sharp.dll
index 15945d58..b648c1c6 100755
Binary files a/Example2/bin/Debug_Ubuntu/websocket-sharp.dll and b/Example2/bin/Debug_Ubuntu/websocket-sharp.dll differ
diff --git a/Example2/bin/Debug_Ubuntu/websocket-sharp.dll.mdb b/Example2/bin/Debug_Ubuntu/websocket-sharp.dll.mdb
index 99628d61..98865623 100644
Binary files a/Example2/bin/Debug_Ubuntu/websocket-sharp.dll.mdb and b/Example2/bin/Debug_Ubuntu/websocket-sharp.dll.mdb differ
diff --git a/Example3/bin/Debug_Ubuntu/Example3.exe b/Example3/bin/Debug_Ubuntu/Example3.exe
index e95873d7..3817b59a 100755
Binary files a/Example3/bin/Debug_Ubuntu/Example3.exe and b/Example3/bin/Debug_Ubuntu/Example3.exe differ
diff --git a/Example3/bin/Debug_Ubuntu/Example3.exe.mdb b/Example3/bin/Debug_Ubuntu/Example3.exe.mdb
index 8cd885a3..4bccc27c 100644
Binary files a/Example3/bin/Debug_Ubuntu/Example3.exe.mdb and b/Example3/bin/Debug_Ubuntu/Example3.exe.mdb differ
diff --git a/Example3/bin/Debug_Ubuntu/websocket-sharp.dll b/Example3/bin/Debug_Ubuntu/websocket-sharp.dll
index 15945d58..b648c1c6 100755
Binary files a/Example3/bin/Debug_Ubuntu/websocket-sharp.dll and b/Example3/bin/Debug_Ubuntu/websocket-sharp.dll differ
diff --git a/Example3/bin/Debug_Ubuntu/websocket-sharp.dll.mdb b/Example3/bin/Debug_Ubuntu/websocket-sharp.dll.mdb
index 99628d61..98865623 100644
Binary files a/Example3/bin/Debug_Ubuntu/websocket-sharp.dll.mdb and b/Example3/bin/Debug_Ubuntu/websocket-sharp.dll.mdb differ
diff --git a/websocket-sharp/CloseEventArgs.cs b/websocket-sharp/CloseEventArgs.cs
index 3df14d50..79fa8d7d 100644
--- a/websocket-sharp/CloseEventArgs.cs
+++ b/websocket-sharp/CloseEventArgs.cs
@@ -105,7 +105,7 @@ namespace WebSocketSharp {
#endregion
- #region Private Method
+ #region Private Methods
private ushort getCodeFrom(PayloadData data)
{
diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index 1508fd4b..904ca64c 100644
--- a/websocket-sharp/Ext.cs
+++ b/websocket-sharp/Ext.cs
@@ -55,6 +55,12 @@ namespace WebSocketSharp {
///
public static class Ext {
+ #region Field
+
+ private const string _tspecials = "()<>@,;:\\\"/[]?={} \t";
+
+ #endregion
+
#region Private Methods
private static void times(this ulong n, Action act)
@@ -71,6 +77,21 @@ namespace WebSocketSharp {
#endregion
+ #region Internal Method
+
+ internal static bool IsToken(this string value)
+ {
+ foreach (char c in value)
+ {
+ if (c < 0x20 || c >= 0x7f || _tspecials.Contains (c))
+ return false;
+ }
+
+ return true;
+ }
+
+ #endregion
+
#region Public Methods
///
- Documentation for this section has not yet been entered.
- Cookie Class
Documentation for this section has not yet been entered.
+ Determines whether the specified object is equal to the current WebSocketSharp.Net.Cookie. +
Documentation for this section has not yet been entered.
+ Serves as a hash function for a WebSocketSharp.Net.Cookie object. +
Documentation for this section has not yet been entered.
+ Returns a string that represents the current WebSocketSharp.Net.Cookie. +
- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.Cookie class. +Syntax
public Cookie ()Remarks
@@ -596,8 +635,9 @@Cookie Constructor
+- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.Cookie class + with the specified name and value. +Syntax
Parameters
@@ -607,16 +647,54 @@ name- Documentation for this section has not yet been entered. - + A string that contains the Name of the cookie. +value - Documentation for this section has not yet been entered. - + A string that contains the Value of the cookie. +Exceptions
+++
++ +Type +Reason ++ ++ WebSocketSharp.Net.CookieException + ++ ++ name is null or string.Empty. +
++ - or - +
++ name contains an invalid character. +
++ - or - +
++ value is null. +
++ - or - +
++ value contains a string not enclosed in double quotes + that contains an invalid character. +
+Remarks
Documentation for this section has not yet been entered. @@ -629,8 +707,9 @@Cookie Constructor
+- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.Cookie class + with the specified name, value and path. +Syntax
Parameters
@@ -640,22 +719,60 @@ name- Documentation for this section has not yet been entered. - + A string that contains the Name of the cookie. +value - Documentation for this section has not yet been entered. - + A string that contains the Value of the cookie. +path - Documentation for this section has not yet been entered. - + A string that contains the value of the Path attribute of the cookie. +Exceptions
+++
++ +Type +Reason ++ ++ WebSocketSharp.Net.CookieException + ++ ++ name is null or string.Empty. +
++ - or - +
++ name contains an invalid character. +
++ - or - +
++ value is null. +
++ - or - +
++ value contains a string not enclosed in double quotes + that contains an invalid character. +
+Remarks
Documentation for this section has not yet been entered. @@ -668,8 +785,10 @@Cookie Constructor
+- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.Cookie class + with the specified name, value, + path and domain. +Syntax
Parameters
@@ -679,28 +798,66 @@ name- Documentation for this section has not yet been entered. - + A string that contains the Name of the cookie. +value - Documentation for this section has not yet been entered. - + A string that contains the Value of the cookie. +path - Documentation for this section has not yet been entered. - + A string that contains the value of the Path attribute of the cookie. +domain - Documentation for this section has not yet been entered. - + A string that contains the value of the Domain attribute of the cookie. +Exceptions
+++
++ +Type +Reason ++ ++ WebSocketSharp.Net.CookieException + ++ ++ name is null or string.Empty. +
++ - or - +
++ name contains an invalid character. +
++ - or - +
++ value is null. +
++ - or - +
++ value contains a string not enclosed in double quotes + that contains an invalid character. +
+Remarks
Documentation for this section has not yet been entered. @@ -713,14 +870,14 @@Comment Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Comment attribute of the cookie. +Syntax
public string Comment { get; set; }Value
- Documentation for this section has not yet been entered. -+ A string that contains a comment to document intended use of the cookie. +Remarks
Documentation for this section has not yet been entered. @@ -733,14 +890,15 @@CommentUri Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the CommentURL attribute of the cookie. +Syntax
public Uri CommentUri { get; set; }Value
- Documentation for this section has not yet been entered. -+ A Uri that contains a URI that provides the comment + to document intended use of the cookie. +Remarks
Documentation for this section has not yet been entered. @@ -753,14 +911,16 @@Discard Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating whether the client discards the cookie unconditionally + when the client terminates. +Syntax
public bool Discard { get; set; }Value
- Documentation for this section has not yet been entered. -+ true if the client discards the cookie unconditionally when the client terminates; + otherwise, false. The default is false. +Remarks
Documentation for this section has not yet been entered. @@ -773,14 +933,14 @@Domain Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Domain attribute of the cookie. +Syntax
public string Domain { get; set; }Value
- Documentation for this section has not yet been entered. -+ A string that contains a URI for which the cookie is valid. +Remarks
Documentation for this section has not yet been entered. @@ -793,25 +953,26 @@Equals Method
- Documentation for this section has not yet been entered. -
+ Determines whether the specified object is equal to the current WebSocketSharp.Net.Cookie. +Syntax
- +Parameters
- - obj + comparand
- - Documentation for this section has not yet been entered. -
+ An object to compare with the current WebSocketSharp.Net.Cookie. +Returns
- Documentation for this section has not yet been entered. -+ true if the specified object is equal to the current WebSocketSharp.Net.Cookie; + otherwise, false. +Remarks
Documentation for this section has not yet been entered. @@ -824,14 +985,14 @@Expired Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating whether the cookie has expired. +Syntax
public bool Expired { get; set; }Value
- Documentation for this section has not yet been entered. -+ true if the cookie has expired; otherwise, false. +Remarks
Documentation for this section has not yet been entered. @@ -844,14 +1005,14 @@Expires Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Expires attribute of the cookie. +Syntax
public DateTime Expires { get; set; }Value
- Documentation for this section has not yet been entered. -+ A DateTime that contains the date and time at which the cookie expires. +Remarks
Documentation for this section has not yet been entered. @@ -864,14 +1025,14 @@GetHashCode Method
- Documentation for this section has not yet been entered. -
+ Serves as a hash function for a WebSocketSharp.Net.Cookie object. +Syntax
public override int GetHashCode ()Returns
- Documentation for this section has not yet been entered. -+ An int that contains a hash code for this instance. +Remarks
Documentation for this section has not yet been entered. @@ -884,14 +1045,14 @@HttpOnly Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating non-HTTP APIs can access the cookie. +Syntax
public bool HttpOnly { get; set; }Value
- Documentation for this section has not yet been entered. -+ true if non-HTTP APIs can not access the cookie; otherwise, false. +Remarks
Documentation for this section has not yet been entered. @@ -904,13 +1065,38 @@Name Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the Name of the cookie. +Syntax
public string Name { get; set; }Value
- Documentation for this section has not yet been entered. + A string that contains the Name of the cookie. ++Exceptions
+++
+ +Type +Reason ++ ++ WebSocketSharp.Net.CookieException + ++ ++ The value specified for a set operation is null or string.Empty. +
++ - or - +
++ The value specified for a set operation contains an invalid character. +
+Remarks
@@ -924,14 +1110,15 @@@@ -421,8 +445,8 @@Path Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Path attribute of the cookie. +Syntax
public string Path { get; set; }Value
- Documentation for this section has not yet been entered. -+ A string that contains a subset of URI on the origin server + to which the cookie applies. +Remarks
Documentation for this section has not yet been entered. @@ -944,13 +1131,30 @@@@ -338,7 +350,9 @@Port Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Port attribute of the cookie. +Syntax
public string Port { get; set; }Value
- Documentation for this section has not yet been entered. + A string that contains a list of the TCP ports to which the cookie applies. ++Exceptions
+++
+ +Type +Reason ++ ++ WebSocketSharp.Net.CookieException + ++ The value specified for a set operation could not be parsed or is not enclosed in double quotes. + +Remarks
@@ -964,18 +1168,20 @@Secure Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating whether the security level of the cookie is secure. +Syntax
public bool Secure { get; set; }Value
- Documentation for this section has not yet been entered. -+ true if the security level of the cookie is secure; otherwise, false. + The default is false. +Remarks
- Documentation for this section has not yet been entered. -+ When this property is true, the cookie may be included in the HTTP request + only if the request is transmitted over the HTTPS. +Requirements
Namespace: WebSocketSharp.Net@@ -984,14 +1190,14 @@
Assembly: websocket-sharp (in websocket-sharp.dll)TimeStamp Property
- Documentation for this section has not yet been entered. -
+ Gets the time when the cookie was issued. +Syntax
public DateTime TimeStamp { get; }Value
- Documentation for this section has not yet been entered. -+ A DateTime that contains the time when the cookie was issued. +Remarks
Documentation for this section has not yet been entered. @@ -1004,18 +1210,18 @@ToString Method
- Documentation for this section has not yet been entered. -
+ Returns a string that represents the current WebSocketSharp.Net.Cookie. +Syntax
public override string ToString ()Returns
- Documentation for this section has not yet been entered. -+ A string that represents the current WebSocketSharp.Net.Cookie. +Remarks
- Documentation for this section has not yet been entered. -+ This method returns a string to use to send an HTTP Cookie to an origin server. +Requirements
Namespace: WebSocketSharp.Net@@ -1024,14 +1230,14 @@
Assembly: websocket-sharp (in websocket-sharp.dll)Value Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the Value of the cookie. +Syntax
public string Value { get; set; }Value
- Documentation for this section has not yet been entered. -+ A string that contains the Value of the cookie. +Remarks
Documentation for this section has not yet been entered. @@ -1044,13 +1250,31 @@@@ -263,7 +263,9 @@Version Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the value of the Version attribute of the cookie. +Syntax
public int Version { get; set; }Value
- Documentation for this section has not yet been entered. + An int that contains the version of the HTTP state management + to which the cookie conforms. ++Exceptions
+++
+ +Type +Reason ++ ++ ArgumentOutOfRangeException + ++ The value specified for a set operation is less than zero. + +Remarks
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html index d9e3ad41..35f155be 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieCollection.html @@ -207,8 +207,8 @@CookieCollection Class
- Documentation for this section has not yet been entered. -
+ Provides a collection container for instances of the WebSocketSharp.Net.Cookie class. +Syntax
public class CookieCollection : ICollection@@ -243,8 +243,8 @@ ()- Documentation for this section has not yet been entered. - + Initializes a new instance of the WebSocketSharp.Net.CookieCollection class. +int - . Documentation for this section has not yet been entered. + . + Gets the number of cookies contained in the WebSocketSharp.Net.CookieCollection. +[read-only] @@ -275,7 +277,9 @@bool - . Documentation for this section has not yet been entered. + . + Gets a value indicating whether the WebSocketSharp.Net.CookieCollection is read-only. +[read-only] @@ -287,7 +291,9 @@bool - . Documentation for this section has not yet been entered. + . + Gets a value indicating whether access to the WebSocketSharp.Net.CookieCollection is thread safe. +[read-only] @@ -298,7 +304,9 @@default propertyCookie - . Documentation for this section has not yet been entered. + . + Gets the WebSocketSharp.Net.Cookie with the specified index from the WebSocketSharp.Net.CookieCollection. +[read-only] @@ -309,7 +317,9 @@default propertyCookie - . Documentation for this section has not yet been entered. + . + Gets the WebSocketSharp.Net.Cookie with the specified name from the WebSocketSharp.Net.CookieCollection. +[read-only] @@ -321,7 +331,9 @@object - . Documentation for this section has not yet been entered. + . + Gets an object to use to synchronize access to the WebSocketSharp.Net.CookieCollection. +Add - (Cookie) + (Cookie)Documentation for this section has not yet been entered.+ Add the specified WebSocketSharp.Net.Cookie to the WebSocketSharp.Net.CookieCollection. +@@ -348,7 +362,9 @@ Add - (CookieCollection) + (CookieCollection)Documentation for this section has not yet been entered.+ Add the elements of the specified WebSocketSharp.Net.CookieCollection to the current WebSocketSharp.Net.CookieCollection. +@@ -358,7 +374,10 @@ CopyTo - (Array, int) + (Array, int)Documentation for this section has not yet been entered.+ Copies the elements of the WebSocketSharp.Net.CookieCollection to the specified Array, + starting at the specified index in the array. +@@ -368,7 +387,10 @@ CopyTo - (Cookie[], int) + (Cookie[], int)Documentation for this section has not yet been entered.+ Copies the elements of the WebSocketSharp.Net.CookieCollection to the specified array of WebSocketSharp.Net.Cookie, + starting at the specified index in the array. +@@ -378,7 +400,9 @@ GetEnumerator - () + (): IEnumerator Documentation for this section has not yet been entered.: IEnumerator + Gets the enumerator to use to iterate through the WebSocketSharp.Net.CookieCollection. +CookieCollection Constructor
- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.CookieCollection class. +Syntax
public CookieCollection ()Remarks
@@ -437,8 +461,8 @@Add Method
+- Documentation for this section has not yet been entered. -
+ Add the specified WebSocketSharp.Net.Cookie to the WebSocketSharp.Net.CookieCollection. +Syntax
Parameters
@@ -448,10 +472,27 @@ cookie- Documentation for this section has not yet been entered. - + A WebSocketSharp.Net.Cookie to add to the WebSocketSharp.Net.CookieCollection. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ cookie is null. + +Remarks
Documentation for this section has not yet been entered. @@ -464,8 +505,8 @@Add Method
+- Documentation for this section has not yet been entered. -
+ Add the elements of the specified WebSocketSharp.Net.CookieCollection to the current WebSocketSharp.Net.CookieCollection. +Syntax
public void Add (CookieCollection cookies)Parameters
@@ -475,10 +516,27 @@ cookies- Documentation for this section has not yet been entered. - + A WebSocketSharp.Net.CookieCollection to add to the current WebSocketSharp.Net.CookieCollection. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ cookies is null. + +Remarks
Documentation for this section has not yet been entered. @@ -491,8 +549,9 @@CopyTo Method
+- Documentation for this section has not yet been entered. -
+ Copies the elements of the WebSocketSharp.Net.CookieCollection to the specified Array, + starting at the specified index in the array. +Syntax
Parameters
@@ -502,16 +561,41 @@ array- Documentation for this section has not yet been entered. - + An Array that is the destination of the elements copied from the WebSocketSharp.Net.CookieCollection. +index - Documentation for this section has not yet been entered. - + An int that indicates the zero-based index in array at which copying begins. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ array is null. + ++ ++ ArgumentOutOfRangeException + ++ index is less than zero. + +Remarks
Documentation for this section has not yet been entered. @@ -524,8 +608,9 @@CopyTo Method
+- Documentation for this section has not yet been entered. -
+ Copies the elements of the WebSocketSharp.Net.CookieCollection to the specified array of WebSocketSharp.Net.Cookie, + starting at the specified index in the array. +Syntax
Parameters
@@ -535,16 +620,41 @@ array- Documentation for this section has not yet been entered. - + An array of WebSocketSharp.Net.Cookie that is the destination of the elements copied from the WebSocketSharp.Net.CookieCollection. +index - Documentation for this section has not yet been entered. - + An int that indicates the zero-based index in array at which copying begins. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ array is null. + ++ ++ ArgumentOutOfRangeException + ++ index is less than zero. + +Remarks
Documentation for this section has not yet been entered. @@ -557,14 +667,14 @@Count Property
- Documentation for this section has not yet been entered. -
+ Gets the number of cookies contained in the WebSocketSharp.Net.CookieCollection. +Syntax
public int Count { get; }Value
- Documentation for this section has not yet been entered. -+ An int that indicates the number of cookies contained in the WebSocketSharp.Net.CookieCollection. +Remarks
Documentation for this section has not yet been entered. @@ -577,14 +687,15 @@GetEnumerator Method
- Documentation for this section has not yet been entered. -
+ Gets the enumerator to use to iterate through the WebSocketSharp.Net.CookieCollection. +Syntax
public IEnumerator GetEnumerator ()Returns
- Documentation for this section has not yet been entered. -+ An instance of an implementation of the IEnumerator interface + to use to iterate through the WebSocketSharp.Net.CookieCollection. +Remarks
Documentation for this section has not yet been entered. @@ -597,14 +708,15 @@IsReadOnly Property
- Documentation for this section has not yet been entered. -
+ Gets a value indicating whether the WebSocketSharp.Net.CookieCollection is read-only. +Syntax
public bool IsReadOnly { get; }Value
- Documentation for this section has not yet been entered. -+ true if the WebSocketSharp.Net.CookieCollection is read-only; otherwise, false. + The default is true. +Remarks
Documentation for this section has not yet been entered. @@ -617,14 +729,15 @@IsSynchronized Property
- Documentation for this section has not yet been entered. -
+ Gets a value indicating whether access to the WebSocketSharp.Net.CookieCollection is thread safe. +Syntax
public bool IsSynchronized { get; }Value
- Documentation for this section has not yet been entered. -+ true if access to the WebSocketSharp.Net.CookieCollection is thread safe; otherwise, false. + The default is false. +Remarks
Documentation for this section has not yet been entered. @@ -637,8 +750,8 @@@@ -346,8 +349,8 @@Item Property
- Documentation for this section has not yet been entered. -
+ Gets the WebSocketSharp.Net.Cookie with the specified index from the WebSocketSharp.Net.CookieCollection. +Syntax
@@ -302,8 +305,8 @@@@ -651,13 +764,31 @@ index
- Documentation for this section has not yet been entered. - + An int that is the zero-based index of the WebSocketSharp.Net.Cookie to find. +Value
- Documentation for this section has not yet been entered. + A WebSocketSharp.Net.Cookie with the specified index in the WebSocketSharp.Net.CookieCollection. ++Exceptions
+++
+ +Type +Reason ++ ++ ArgumentOutOfRangeException + ++ index is less than zero or index is greater than or + equal to CookieCollection.Count. + +Remarks
@@ -671,8 +802,8 @@@@ -282,7 +283,9 @@Item Property
- Documentation for this section has not yet been entered. -
+ Gets the WebSocketSharp.Net.Cookie with the specified name from the WebSocketSharp.Net.CookieCollection. +Syntax
@@ -685,13 +816,30 @@ name
- Documentation for this section has not yet been entered. - + A string that is the name of the WebSocketSharp.Net.Cookie to find. +Value
- Documentation for this section has not yet been entered. + A WebSocketSharp.Net.Cookie with the specified name in the WebSocketSharp.Net.CookieCollection. ++Exceptions
+++
+ +Type +Reason ++ ++ ArgumentNullException + ++ name is null. + +Remarks
@@ -705,14 +853,14 @@@@ -265,8 +265,9 @@ (System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)SyncRoot Property
- Documentation for this section has not yet been entered. -
+ Gets an object to use to synchronize access to the WebSocketSharp.Net.CookieCollection. +Syntax
public object SyncRoot { get; }Value
- Documentation for this section has not yet been entered. -+ An object to use to synchronize access to the WebSocketSharp.Net.CookieCollection. +Remarks
Documentation for this section has not yet been entered. diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html index 24ecda71..e4dc996c 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Net/CookieException.html @@ -207,8 +207,8 @@CookieException Class
- Documentation for this section has not yet been entered. -
+ The exception that is thrown when a WebSocketSharp.Net.Cookie gets an error. +Syntax
public class CookieException : FormatException@@ -243,8 +243,8 @@ ()- Documentation for this section has not yet been entered. - + Initializes a new instance of the WebSocketSharp.Net.CookieException class. +- Documentation for this section has not yet been entered. - + Initializes a new instance of the WebSocketSharp.Net.CookieException class + with the specified System.Runtime.Serialization.SerializationInfo and System.Runtime.Serialization.StreamingContext. +GetObjectData - (System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) + (System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)Documentation for this section has not yet been entered.+ Populates the specified System.Runtime.Serialization.SerializationInfo with the data needed to serialize the WebSocketSharp.Net.CookieException. +- Documentation for this section has not yet been entered. - + Populates the specified System.Runtime.Serialization.SerializationInfo with the data needed to serialize the WebSocketSharp.Net.CookieException. +CookieException Constructor
- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.CookieException class. +Syntax
public CookieException ()Remarks
@@ -362,25 +365,26 @@CookieException Constructor
- Documentation for this section has not yet been entered. -
+ Initializes a new instance of the WebSocketSharp.Net.CookieException class + with the specified System.Runtime.Serialization.SerializationInfo and System.Runtime.Serialization.StreamingContext. +Syntax
-protected CookieException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)+protected CookieException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)Parameters
- - info + serializationInfo
- - Documentation for this section has not yet been entered. -
+ A System.Runtime.Serialization.SerializationInfo that holds the serialized object data. +- - context + streamingContext
- - Documentation for this section has not yet been entered. -
+ A System.Runtime.Serialization.StreamingContext that contains the contextual information about the source or destination. +Remarks
@@ -395,8 +399,8 @@GetObjectData Method
- Documentation for this section has not yet been entered. -
+ Populates the specified System.Runtime.Serialization.SerializationInfo with the data needed to serialize the WebSocketSharp.Net.CookieException. +Syntax
public override void GetObjectData (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)Parameters
@@ -406,14 +410,14 @@ serializationInfo- Documentation for this section has not yet been entered. - + A System.Runtime.Serialization.SerializationInfo that holds the serialized object data. +streamingContext - Documentation for this section has not yet been entered. - + A System.Runtime.Serialization.StreamingContext that specifies the destination for the serialization. +Remarks
@@ -428,26 +432,26 @@System.Runtime.Serialization.ISerializable.GetObjectData Method
- Documentation for this section has not yet been entered. -
+ Populates the specified System.Runtime.Serialization.SerializationInfo with the data needed to serialize the WebSocketSharp.Net.CookieException. +Syntax
- void System.Runtime.Serialization.ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)+ void System.Runtime.Serialization.ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)Parameters
- - info + serializationInfo
- - Documentation for this section has not yet been entered. -
+ A System.Runtime.Serialization.SerializationInfo that holds the serialized object data. +- - context + streamingContext
- - Documentation for this section has not yet been entered. -
+ A System.Runtime.Serialization.StreamingContext that specifies the destination for the serialization. +Remarks
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html index a2690457..44d1a2ab 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerRequest.html @@ -207,7 +207,7 @@HttpListenerRequest Class
- Provides access to the HTTP request objects sent to a WebSocketSharp.Net.HttpListener instance. + Provides access to a request to a WebSocketSharp.Net.HttpListener instance.
@@ -578,8 +623,8 @@Syntax
@@ -806,7 +806,7 @@public System.Text.Encoding ContentEncoding { get; }Value
- A System.Text.Encoding that contains the encoding that can be used with entity body data. + A System.Text.Encoding that contains the encoding that can be used with the entity body data.Remarks
@@ -827,7 +827,7 @@@@ -523,8 +568,8 @@Value
A long that contains the value of the Content-Length entity-header field. - -1 if the size is not known. + The value is a number of bytes in the entity body data. -1 if the size is not known.Remarks
diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html index 6b915a65..96f0ed7b 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Net/HttpListenerResponse.html @@ -207,8 +207,8 @@HttpListenerResponse Class
- Documentation for this section has not yet been entered. -
+ Provides access to a response to a request being processed by a WebSocketSharp.Net.HttpListener instance. +@@ -423,7 +447,9 @@Syntax
public sealed class HttpListenerResponse : IDisposable@@ -216,8 +216,8 @@Remarks
- Documentation for this section has not yet been entered. -+ The HttpListenerResponse class cannot be inherited. +Requirements
Namespace: WebSocketSharp.Net@@ -244,7 +244,9 @@
Assembly: websocket-sharp (in websocket-sharp.dll)System.Text.Encoding - . Documentation for this section has not yet been entered. + . + Gets or sets the encoding that can be used with the entity body data included in the response. +@@ -259,7 +261,9 @@ long - . Documentation for this section has not yet been entered. + . + Gets or sets the size of the entity body data included in the response. +@@ -274,7 +278,9 @@ string - . Documentation for this section has not yet been entered. + . + Gets or sets the media type of the entity body included in the response. +@@ -289,7 +295,9 @@ CookieCollection - . Documentation for this section has not yet been entered. + . + Gets or sets the cookies returned with the response. +@@ -304,7 +312,9 @@ WebHeaderCollection - . Documentation for this section has not yet been entered. + . + Gets or sets the HTTP headers returned to the client. +@@ -319,7 +329,9 @@ bool - . Documentation for this section has not yet been entered. + . + Gets or sets a value indicating whether the server requests a persistent connection. +[read-only] @@ -331,7 +343,9 @@System.IO.Stream - . Documentation for this section has not yet been entered. + . + Gets a System.IO.Stream to use to write the entity body data. +@@ -346,7 +360,9 @@ Version - . Documentation for this section has not yet been entered. + . + Gets or sets the HTTP version used in the response. +@@ -361,7 +377,9 @@ string - . Documentation for this section has not yet been entered. + . + Gets or sets the URL to which the client is redirected to locate a requested resource. +@@ -376,7 +394,9 @@ bool - . Documentation for this section has not yet been entered. + . + Gets or sets a value indicating whether the response uses the chunked transfer encoding. +@@ -391,7 +411,9 @@ int - . Documentation for this section has not yet been entered. + . + Gets or sets the HTTP status code returned to the client. +@@ -406,7 +428,9 @@ string - . Documentation for this section has not yet been entered. + . + Gets or sets a description of the HTTP status code returned to the client. +Abort - () + ()Documentation for this section has not yet been entered.+ Closes the connection to the client without sending a response. +@@ -433,7 +459,10 @@ AddHeader - (string, string) + (string, string)Documentation for this section has not yet been entered.+ Adds the specified HTTP header name and value to + the headers for this response. +@@ -443,7 +472,9 @@ AppendCookie - (Cookie) + (Cookie)Documentation for this section has not yet been entered.+ Adds the specified WebSocketSharp.Net.Cookie to the HttpListenerResponse.Cookies sent with the response. +@@ -453,7 +484,9 @@ AppendHeader - (string, string) + (string, string)Documentation for this section has not yet been entered.+ Appends a value to the specified HTTP header sent with the response. +@@ -463,7 +496,10 @@ Close - () + ()Documentation for this section has not yet been entered.+ Sends the response to the client and releases the resources associated with + the WebSocketSharp.Net.HttpListenerResponse instance. +@@ -473,7 +509,10 @@ Close - (byte[], bool) + (byte[], bool)Documentation for this section has not yet been entered.+ Sends the response with the specified array of byte to the client and + releases the resources associated with the WebSocketSharp.Net.HttpListenerResponse instance. +@@ -483,7 +522,9 @@ CopyFrom - (HttpListenerResponse) + (HttpListenerResponse)Documentation for this section has not yet been entered.+ Copies properties from the specified WebSocketSharp.Net.HttpListenerResponse to this response. +@@ -493,7 +534,9 @@ Redirect - (string) + (string)Documentation for this section has not yet been entered.+ Configures the response to redirect the client's request to the specified url. +@@ -503,7 +546,9 @@ SetCookie - (Cookie) + (Cookie)Documentation for this section has not yet been entered.+ Adds or updates a WebSocketSharp.Net.Cookie in the HttpListenerResponse.Cookies sent with the response. +- Documentation for this section has not yet been entered. - + Releases all resource used by the WebSocketSharp.Net.HttpListenerResponse. +Abort Method
- Documentation for this section has not yet been entered. -
+ Closes the connection to the client without sending a response. +Syntax
public void Abort ()Remarks
@@ -594,8 +639,9 @@AddHeader Method
+- Documentation for this section has not yet been entered. -
+ Adds the specified HTTP header name and value to + the headers for this response. +Syntax
Parameters
@@ -605,16 +651,41 @@ name- Documentation for this section has not yet been entered. - + A string that contains the name of the HTTP header to add. +value - Documentation for this section has not yet been entered. - + A string that contains the value of the HTTP header to add. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ name is null or string.Empty. + ++ ++ ArgumentOutOfRangeException + ++ The length of value is greater than 65,535 characters. + +Remarks
Documentation for this section has not yet been entered. @@ -627,8 +698,8 @@AppendCookie Method
+- Documentation for this section has not yet been entered. -
+ Adds the specified WebSocketSharp.Net.Cookie to the HttpListenerResponse.Cookies sent with the response. +Syntax
Parameters
@@ -638,10 +709,27 @@ cookie- Documentation for this section has not yet been entered. - + A WebSocketSharp.Net.Cookie to add to the HttpListenerResponse.Cookies. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ cookie is null. + +Remarks
Documentation for this section has not yet been entered. @@ -654,8 +742,8 @@AppendHeader Method
+- Documentation for this section has not yet been entered. -
+ Appends a value to the specified HTTP header sent with the response. +Syntax
Parameters
@@ -665,16 +753,41 @@ name- Documentation for this section has not yet been entered. - + A string that contains the name of the HTTP header to append value to. +value - Documentation for this section has not yet been entered. - + A string that contains the value to append to the HTTP header. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentException + ++ name is null or string.Empty. + ++ ++ ArgumentOutOfRangeException + ++ The length of value is greater than 65,535 characters. + +Remarks
Documentation for this section has not yet been entered. @@ -687,8 +800,9 @@Close Method
- Documentation for this section has not yet been entered. -
+ Sends the response to the client and releases the resources associated with + the WebSocketSharp.Net.HttpListenerResponse instance. +Syntax
public void Close ()Remarks
@@ -703,8 +817,9 @@Close Method
+- Documentation for this section has not yet been entered. -
+ Sends the response with the specified array of byte to the client and + releases the resources associated with the WebSocketSharp.Net.HttpListenerResponse instance. +Syntax
Parameters
@@ -714,16 +829,41 @@ responseEntity- Documentation for this section has not yet been entered. - + An array of byte that contains the response entity body data. +willBlock - Documentation for this section has not yet been entered. - + true if this method blocks execution while flushing the stream to the client; otherwise, false. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ responseEntity is null. + ++ ++ ObjectDisposedException + ++ This object is closed. + +Remarks
Documentation for this section has not yet been entered. @@ -736,13 +876,38 @@ContentEncoding Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the encoding that can be used with the entity body data included in the response. +Syntax
public System.Text.Encoding ContentEncoding { get; set; }Value
- Documentation for this section has not yet been entered. + A System.Text.Encoding that contains the encoding that can be used with the entity body data. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + +Remarks
@@ -756,13 +921,47 @@ContentLength64 Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the size of the entity body data included in the response. +Syntax
public long ContentLength64 { get; set; }Value
- Documentation for this section has not yet been entered. + A long that contains the value of the Content-Length entity-header field. + The value is a number of bytes in the entity body data. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + ++ ++ ArgumentOutOfRangeException + ++ The value specified for a set operation is less than zero. + +Remarks
@@ -776,13 +975,55 @@ContentType Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the media type of the entity body included in the response. +Syntax
public string ContentType { get; set; }Value
- Documentation for this section has not yet been entered. + The type of the content. + A string that contains the value of the Content-Type entity-header field. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + ++ ++ ArgumentNullException + ++ The value specified for a set operation is null. + ++ ++ ArgumentException + ++ The value specified for a set operation is a string.Empty. + +Remarks
@@ -796,14 +1037,14 @@Cookies Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the cookies returned with the response. +Syntax
public CookieCollection Cookies { get; set; }Value
- Documentation for this section has not yet been entered. -+ A WebSocketSharp.Net.CookieCollection that contains the cookies returned with the response. +Remarks
Documentation for this section has not yet been entered. @@ -816,8 +1057,8 @@CopyFrom Method
- Documentation for this section has not yet been entered. -
+ Copies properties from the specified WebSocketSharp.Net.HttpListenerResponse to this response. +Syntax
public void CopyFrom (HttpListenerResponse templateResponse)Parameters
@@ -827,8 +1068,8 @@ templateResponse- Documentation for this section has not yet been entered. - + A WebSocketSharp.Net.HttpListenerResponse to copy. +Remarks
@@ -843,14 +1084,14 @@Headers Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the HTTP headers returned to the client. +Syntax
public WebHeaderCollection Headers { get; set; }Value
- Documentation for this section has not yet been entered. -+ A WebSocketSharp.Net.WebHeaderCollection that contains the HTTP headers returned to the client. +Remarks
Documentation for this section has not yet been entered. @@ -863,13 +1104,39 @@KeepAlive Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating whether the server requests a persistent connection. +Syntax
public bool KeepAlive { get; set; }Value
- Documentation for this section has not yet been entered. + true if the server requests a persistent connection; otherwise, false. + The default is true. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + +Remarks
@@ -883,13 +1150,30 @@OutputStream Property
- Documentation for this section has not yet been entered. -
+ Gets a System.IO.Stream to use to write the entity body data. +Syntax
public System.IO.Stream OutputStream { get; }Value
- Documentation for this section has not yet been entered. + A System.IO.Stream to use to write the entity body data. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + +Remarks
@@ -903,13 +1187,55 @@ProtocolVersion Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the HTTP version used in the response. +Syntax
public Version ProtocolVersion { get; set; }Value
- Documentation for this section has not yet been entered. + A Version that contains the HTTP version used in the response. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + ++ ++ ArgumentNullException + ++ The value specified for a set operation is null. + ++ ++ ArgumentException + ++ The value specified for a set operation does not have its Version.Major property set to 1 or + does not have its Version.Minor property set to either 0 or 1. + +Remarks
@@ -923,8 +1249,8 @@Redirect Method
- Documentation for this section has not yet been entered. -
+ Configures the response to redirect the client's request to the specified url. +Syntax
Parameters
@@ -934,8 +1260,8 @@ url- Documentation for this section has not yet been entered. - + A string that contains a URL to redirect the client's request to. +Remarks
@@ -950,13 +1276,46 @@RedirectLocation Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the URL to which the client is redirected to locate a requested resource. +Syntax
public string RedirectLocation { get; set; }Value
- Documentation for this section has not yet been entered. + A string that contains the value of the Location response-header field. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + ++ ++ ArgumentException + ++ The value specified for a set operation is a string.Empty. + +Remarks
@@ -970,13 +1329,38 @@SendChunked Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a value indicating whether the response uses the chunked transfer encoding. +Syntax
public bool SendChunked { get; set; }Value
- Documentation for this section has not yet been entered. + true if the response uses the chunked transfer encoding; otherwise, false. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + +Remarks
@@ -990,8 +1374,8 @@SetCookie Method
+- Documentation for this section has not yet been entered. -
+ Adds or updates a WebSocketSharp.Net.Cookie in the HttpListenerResponse.Cookies sent with the response. +Syntax
Parameters
@@ -1001,10 +1385,36 @@ cookie- Documentation for this section has not yet been entered. - + A WebSocketSharp.Net.Cookie to set. +Exceptions
+++
++ +Type +Reason ++ ++ ArgumentNullException + ++ cookie is null. + ++ ++ ArgumentException + ++ cookie already exists in the HttpListenerResponse.Cookies and + could not be replaced. + +Remarks
Documentation for this section has not yet been entered. @@ -1017,13 +1427,47 @@StatusCode Property
- Documentation for this section has not yet been entered. -
+ Gets or sets the HTTP status code returned to the client. +Syntax
public int StatusCode { get; set; }Value
- Documentation for this section has not yet been entered. + An int that indicates the HTTP status code for the response to the request. + The default is HttpStatusCode.OK. ++Exceptions
+++
+ +Type +Reason ++ ++ ObjectDisposedException + ++ This object is closed. + ++ ++ InvalidOperationException + ++ The response has been sent already. + ++ ++ System.Net.ProtocolViolationException + ++ The value specified for a set operation is invalid. Valid values are between 100 and 999. + +Remarks
@@ -1037,14 +1481,14 @@StatusDescription Property
- Documentation for this section has not yet been entered. -
+ Gets or sets a description of the HTTP status code returned to the client. +Syntax
public string StatusDescription { get; set; }Value
- Documentation for this section has not yet been entered. -+ A string that contains a description of the HTTP status code returned to the client. +Remarks
Documentation for this section has not yet been entered. @@ -1057,8 +1501,8 @@System.IDisposable.Dispose Method
- Documentation for this section has not yet been entered. -
+ Releases all resource used by the WebSocketSharp.Net.HttpListenerResponse. +Syntax
void System.IDisposable.Dispose ()diff --git a/websocket-sharp/doc/html/WebSocketSharp.Net/index.html b/websocket-sharp/doc/html/WebSocketSharp.Net/index.html index b7aa585c..9575703a 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Net/index.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Net/index.html @@ -223,24 +223,24 @@ Cookie- Documentation for this section has not yet been entered. - + Provides a set of properties and methods to use to manage the HTTP Cookie. +CookieCollection - Documentation for this section has not yet been entered. - + Provides a collection container for instances of the WebSocketSharp.Net.Cookie class. +CookieException - Documentation for this section has not yet been entered. - + The exception that is thrown when a WebSocketSharp.Net.Cookie gets an error. +@@ -279,7 +279,7 @@ HttpListenerRequest - Provides access to the HTTP request objects sent to a WebSocketSharp.Net.HttpListener instance. + Provides access to a request to a WebSocketSharp.Net.HttpListener instance. @@ -287,8 +287,8 @@ HttpListenerResponse - Documentation for this section has not yet been entered. - + Provides access to a response to a request being processed by a WebSocketSharp.Net.HttpListener instance. +diff --git a/websocket-sharp/doc/html/WebSocketSharp.Server/HttpRequestEventArgs.html b/websocket-sharp/doc/html/WebSocketSharp.Server/HttpRequestEventArgs.html index f79b47d8..a108786c 100644 --- a/websocket-sharp/doc/html/WebSocketSharp.Server/HttpRequestEventArgs.html +++ b/websocket-sharp/doc/html/WebSocketSharp.Server/HttpRequestEventArgs.html @@ -217,8 +217,8 @@ Remarks
An HTTP request event occurs when a WebSocketSharp.Server.HttpServer instance receives an HTTP request. - If you want to get the HTTP request objects, you should access the ResponseEventArgs.Request property. - If you want to get the HTTP response objects to send, you should access the ResponseEventArgs.Response property. + If you want to get the HTTP request objects, you should access the HttpRequestEventArgs.Request property. + If you want to get the HTTP response objects to send, you should access the HttpRequestEventArgs.Response property.Requirements
diff --git a/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html b/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html index 1d1222ef..08d5d004 100644 --- a/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html +++ b/websocket-sharp/doc/html/WebSocketSharp/CloseEventArgs.html @@ -217,8 +217,8 @@Remarks
The WebSocket.OnClose event occurs when the WebSocket receives a close control frame or - the WebSocket.Close method is called. If you want to get the reason for closure, you should access the CloseEventArgs.Code or - CloseEventArgs.Reason properties. + the WebSocket.Close method is called. If you want to get the reason for closure, you should access + the CloseEventArgs.Code or CloseEventArgs.Reason properties.Requirements
@@ -299,7 +299,7 @@ Opcode . - Gets the type of received data. + Gets the type of the received data. (Inherited from MessageEventArgs.)@@ -313,7 +313,7 @@ bool . - Indicates whether the connection closed cleanly or not. + Indicates whether the WebSocket connection closed cleanly. @@ -397,13 +397,13 @@WasClean Property
- Indicates whether the connection closed cleanly or not. + Indicates whether the WebSocket connection closed cleanly.
Syntax
public bool WasClean { get; }Value
- true if the connection closed cleanly; otherwise, false. + true if the WebSocket connection closed cleanly; otherwise, false.Remarks
diff --git a/websocket-sharp/doc/html/WebSocketSharp/Ext.html b/websocket-sharp/doc/html/WebSocketSharp/Ext.html index 895fe25f..58cadb53 100644 --- a/websocket-sharp/doc/html/WebSocketSharp/Ext.html +++ b/websocket-sharp/doc/html/WebSocketSharp/Ext.html @@ -251,6 +251,18 @@ AcceptWebSocketAsync (this System.Net.Sockets.TcpListener, bool, Action<WebSocketSharp.Net.WebSockets.TcpListenerWebSocketContext>)Accepts a WebSocket connection asynchronously by the System.Net.Sockets.TcpListener. ++ ++ + +static++ + Contains + (this string, params char[]) : bool + Determines whether the specified string contains any of characters + in the specified array of char.@@ -384,6 +396,17 @@ IsEmpty (this string) +: bool Determines whether the specified string is a string.Empty. +++ + +static++ + IsEnclosedIn + (this string, char) : bool + Determines whether the specified string is enclosed in the specified char.@@ -848,6 +871,44 @@ Namespace: WebSocketSharp @@ -321,7 +321,7 @@
Assembly: websocket-sharp (in websocket-sharp.dll)
+Contains Method
+++ Determines whether the specified string contains any of characters + in the specified array of char. +
+Syntax
+ +Parameters
++ ++Returns
++ true if str contains any of chars; otherwise, false. ++Remarks
++ Documentation for this section has not yet been entered. ++Requirements
++ Namespace: WebSocketSharp+
Assembly: websocket-sharp (in websocket-sharp.dll)
+Emit Method
@@ -1302,7 +1363,7 @@
Returns
- true if the value parameter is a string.Empty; otherwise, false. + true if value is string.Empty; otherwise, false.Remarks
@@ -1313,6 +1374,43 @@ Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
+IsEnclosedIn Method
+++ Determines whether the specified string is enclosed in the specified char. +
+Syntax
+ +Parameters
++ ++Returns
++ true if str is enclosed in c; otherwise, false. ++Remarks
++ Documentation for this section has not yet been entered. ++Requirements
++ Namespace: WebSocketSharp+
Assembly: websocket-sharp (in websocket-sharp.dll)
+IsHostOrder Method
diff --git a/websocket-sharp/doc/html/WebSocketSharp/MessageEventArgs.html b/websocket-sharp/doc/html/WebSocketSharp/MessageEventArgs.html index 082585a3..727bb9f1 100644 --- a/websocket-sharp/doc/html/WebSocketSharp/MessageEventArgs.html +++ b/websocket-sharp/doc/html/WebSocketSharp/MessageEventArgs.html @@ -271,7 +271,7 @@ Opcode . - Gets the type of received data. + Gets the type of the received data.
public string Data { get; }Value
- A string that contains a received data. + A string that contains the received data.Remarks
@@ -341,7 +341,7 @@public byte[] RawData { get; }Value
- An array of byte that contains a received data. + An array of byte that contains the received data.Remarks
@@ -355,13 +355,13 @@Type Property
- Gets the type of received data. + Gets the type of the received data.
Syntax
public Opcode Type { get; }Value
- One of the Frame.Opcode that indicates the type of received data. + One of the WebSocketSharp.Opcode values that indicates the type of the received data.Remarks
diff --git a/websocket-sharp/doc/html/index.html b/websocket-sharp/doc/html/index.html index b484e43f..000d2b33 100644 --- a/websocket-sharp/doc/html/index.html +++ b/websocket-sharp/doc/html/index.html @@ -315,24 +315,24 @@ Cookie- Documentation for this section has not yet been entered. - + Provides a set of properties and methods to use to manage the HTTP Cookie. +CookieCollection - Documentation for this section has not yet been entered. - + Provides a collection container for instances of the WebSocketSharp.Net.Cookie class. +CookieException - Documentation for this section has not yet been entered. - + The exception that is thrown when a WebSocketSharp.Net.Cookie gets an error. +@@ -371,7 +371,7 @@ HttpListenerRequest - Provides access to the HTTP request objects sent to a WebSocketSharp.Net.HttpListener instance. + Provides access to a request to a WebSocketSharp.Net.HttpListener instance. @@ -379,8 +379,8 @@ HttpListenerResponse - Documentation for this section has not yet been entered. - + Provides access to a response to a request being processed by a WebSocketSharp.Net.HttpListener instance. +diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/Cookie.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/Cookie.xml index e49bdcf0..a5a5b427 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/Cookie.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/Cookie.xml @@ -9,8 +9,12 @@ - To be added. -To be added. ++ Provides a set of properties and methods to use to manage the HTTP Cookie. + ++ The Cookie class cannot be inherited. + diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieCollection.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieCollection.xml index e100b817..543c0b63 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieCollection.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieCollection.xml @@ -13,7 +13,9 @@ @@ -19,7 +23,9 @@ @@ -32,10 +38,41 @@Constructor - To be added. ++ Initializes a new instance of the class. + To be added. - To be added. - To be added. - To be added. + + Athat contains the Name of the cookie. + + + A that contains the Value of the cookie. + + + Initializes a new instance of the class + with the specified and . + To be added. ++ + +is or . + + - or - + ++ +contains an invalid character. + + - or - + ++ +is . + + - or - + ++ +contains a string not enclosed in double quotes + that contains an invalid character. + @@ -48,11 +85,44 @@ - To be added. - To be added. - To be added. - To be added. + + Athat contains the Name of the cookie. + + + A that contains the Value of the cookie. + + + A that contains the value of the Path attribute of the cookie. + + + Initializes a new instance of the class + with the specified , and . + To be added. ++ + +is or . + + - or - + ++ +contains an invalid character. + + - or - + ++ +is . + + - or - + ++ +contains a string not enclosed in double quotes + that contains an invalid character. + @@ -66,12 +136,48 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + + Athat contains the Name of the cookie. + + + A that contains the Value of the cookie. + + + A that contains the value of the Path attribute of the cookie. + + + A that contains the value of the Domain attribute of the cookie. + + + Initializes a new instance of the class + with the specified , , + and . + To be added. ++ + +is or . + + - or - + ++ +contains an invalid character. + + - or - + ++ +is . + + - or - + ++ +contains a string not enclosed in double quotes + that contains an invalid character. + @@ -82,8 +188,12 @@ @@ -95,8 +205,13 @@System.String - To be added. -To be added. ++ Gets or sets the value of the Comment attribute of the cookie. + ++ A that contains a comment to document intended use of the cookie. + To be added. System.Uri - @@ -108,8 +223,14 @@To be added. -To be added. ++ Gets or sets the value of the CommentURL attribute of the cookie. + ++ A that contains a URI that provides the comment + to document intended use of the cookie. + To be added. System.Boolean - @@ -121,25 +242,36 @@To be added. -To be added. ++ Gets or sets a value indicating whether the client discards the cookie unconditionally + when the client terminates. + ++ true if the client discards the cookie unconditionally when the client terminates; + otherwise,false . The default isfalse . +To be added. System.String - To be added. -To be added. ++ Gets or sets the value of the Domain attribute of the cookie. + ++ A that contains a URI for which the cookie is valid. + To be added. - @@ -151,8 +283,12 @@- + + Method System.Boolean - + - To be added. - To be added. -To be added. + + Anto compare with the current . + + + Determines whether the specified +is equal to the current . + + true if the specifiedis equal to the current ; + otherwise, false . +To be added. System.Boolean - @@ -164,8 +300,12 @@To be added. -To be added. ++ Gets or sets a value indicating whether the cookie has expired. + ++ true if the cookie has expired; otherwise,false . +To be added. System.DateTime - @@ -178,8 +318,12 @@To be added. -To be added. ++ Gets or sets the value of the Expires attribute of the cookie. + ++ A that contains the date and time at which the cookie expires. + To be added. - @@ -191,8 +335,12 @@To be added. -To be added. ++ Serves as a hash function for a +object. + + An that contains a hash code for this instance. + To be added. System.Boolean - @@ -204,9 +352,24 @@To be added. -To be added. ++ Gets or sets a value indicating non-HTTP APIs can access the cookie. + ++ true if non-HTTP APIs can not access the cookie; otherwise,false . +To be added. System.String - To be added. -To be added. ++ Gets or sets the Name of the cookie. + ++ A that contains the Name of the cookie. + To be added. ++ + The value specified for a set operation is +or . + + - or - + ++ The value specified for a set operation contains an invalid character. + +@@ -217,8 +380,13 @@ @@ -230,9 +398,16 @@System.String - To be added. -To be added. ++ Gets or sets the value of the Path attribute of the cookie. + ++ A that contains a subset of URI on the origin server + to which the cookie applies. + To be added. System.String - To be added. -To be added. ++ Gets or sets the value of the Port attribute of the cookie. + ++ A that contains a list of the TCP ports to which the cookie applies. + To be added. ++ The value specified for a set operation could not be parsed or is not enclosed in double quotes. + @@ -243,9 +418,17 @@ System.Boolean - To be added. -To be added. -To be added. ++ Gets or sets a value indicating whether the security level of the cookie is secure. + ++ +true if the security level of the cookie is secure; otherwise,false . + The default isfalse . ++ When this property is true , the cookie may be included in the HTTP request + only if the request is transmitted over the HTTPS. +@@ -256,8 +439,12 @@ @@ -270,9 +457,15 @@System.DateTime - To be added. -To be added. ++ Gets the time when the cookie was issued. + ++ A that contains the time when the cookie was issued. + To be added. - To be added. -To be added. -To be added. ++ Returns a +that represents the current . + + A +that represents the current . + + This method returns a to use to send an HTTP Cookie to an origin server. + @@ -283,8 +476,12 @@ @@ -296,9 +493,17 @@System.String - To be added. -To be added. ++ Gets or sets the Value of the cookie. + ++ A that contains the Value of the cookie. + To be added. System.Int32 - To be added. -To be added. ++ Gets or sets the value of the Version attribute of the cookie. + ++ An that contains the version of the HTTP state management + to which the cookie conforms. + To be added. ++ The value specified for a set operation is less than zero. + - To be added. ++ Provides a collection container for instances of the class. + To be added. @@ -23,7 +25,9 @@ Constructor - @@ -38,9 +42,16 @@To be added. ++ Initializes a new instance of the class. + To be added. - To be added. - To be added. + + Ato add to the . + + + Add the specified to the . + To be added. ++ is . + @@ -54,9 +65,16 @@ - To be added. - To be added. + + Ato add to the current . + + + Add the elements of the specified to the current . + To be added. ++ is . + @@ -71,10 +89,23 @@ - To be added. - To be added. - To be added. + + Anthat is the destination of the elements copied from the . + + + An that indicates the zero-based index in at which copying begins. + + + Copies the elements of the to the specified , + starting at the specified in the . + To be added. ++ +is . + + is less than zero. + @@ -89,10 +120,23 @@ - To be added. - To be added. - To be added. + + An array ofthat is the destination of the elements copied from the . + + + An that indicates the zero-based index in at which copying begins. + + + Copies the elements of the to the specified array of , + starting at the specified in the . + To be added. ++ +is . + + is less than zero. + @@ -103,8 +147,12 @@ @@ -117,8 +165,13 @@System.Int32 - To be added. -To be added. ++ Gets the number of cookies contained in the +. + + An that indicates the number of cookies contained in the . + To be added. - @@ -130,8 +183,13 @@To be added. -To be added. ++ Gets the enumerator to use to iterate through the +. + + An instance of an implementation of the interface + to use to iterate through the . + To be added. System.Boolean - @@ -143,8 +201,13 @@To be added. -To be added. ++ Gets a value indicating whether the +is read-only. + + true if theis read-only; otherwise, false . + The default istrue . +To be added. System.Boolean - @@ -159,10 +222,20 @@To be added. -To be added. ++ Gets a value indicating whether access to the +is thread safe. + + true if access to theis thread safe; otherwise, false . + The default isfalse . +To be added. - To be added. - To be added. -To be added. + + Anthat is the zero-based index of the to find. + + + Gets the +with the specified from the . + + A with the specified in the . + To be added. ++ is less than zero or is greater than or + equal to . + @@ -176,10 +249,19 @@ - To be added. - To be added. -To be added. + + Athat is the name of the to find. + + + Gets the +with the specified from the . + + A with the specified in the . + To be added. ++ is . + @@ -190,8 +272,12 @@ diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieException.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieException.xml index cc63c796..437d195e 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieException.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/CookieException.xml @@ -9,7 +9,9 @@System.Object - To be added. -To be added. ++ Gets an object to use to synchronize access to the +. + + An to use to synchronize access to the . + To be added. - To be added. ++ The exception that is thrown when a gets an error. + To be added. @@ -19,22 +21,31 @@ Constructor - To be added. ++ Initializes a new instance of the class. + To be added. - @@ -50,27 +61,39 @@- + + Constructor - - + + - To be added. - To be added. - To be added. + + Athat holds the serialized object data. + + + A that contains the contextual information about the source or destination. + + + Initializes a new instance of the class + with the specified and . + To be added. - To be added. - To be added. - To be added. + + Athat holds the serialized object data. + + + A that specifies the destination for the serialization. + + + Populates the specified with the data needed to serialize the . + To be added. - diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerRequest.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerRequest.xml index d7d2897a..84735b31 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerRequest.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerRequest.xml @@ -10,7 +10,7 @@- + + Method System.Void - - + + - To be added. - To be added. - To be added. + + Athat holds the serialized object data. + + + A that specifies the destination for the serialization. + + + Populates the specified with the data needed to serialize the . + To be added. @@ -116,7 +116,7 @@ - Provides access to the HTTP request objects sent to a instance. + Provides access to a request to a instance. The HttpListenerRequest class cannot be inherited. @@ -98,7 +98,7 @@ Gets the encoding that can be used with the entity body data included in the request. - A that contains the encoding that can be used with entity body data. + A that contains the encoding that can be used with the entity body data. To be added. A that contains the value of the Content-Length entity-header field. - -1 if the size is not known. + The value is a number of bytes in the entity body data.-1 if the size is not known.To be added. diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerResponse.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerResponse.xml index 0916c49b..5543f89c 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerResponse.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Net/HttpListenerResponse.xml @@ -13,8 +13,12 @@- To be added. -To be added. ++ Provides access to a response to a request being processed by a +instance. + + The HttpListenerResponse class cannot be inherited. + @@ -26,7 +30,9 @@ @@ -42,10 +48,23 @@- To be added. ++ Closes the connection to the client without sending a response. + To be added. - To be added. - To be added. - To be added. + + Athat contains the name of the HTTP header to add. + + + A that contains the value of the HTTP header to add. + + + Adds the specified HTTP header and to + the headers for this response. + To be added. ++ +is or . + + The length of is greater than 65,535 characters. + @@ -59,9 +78,16 @@ - To be added. - To be added. + + Ato add to the . + + + Adds the specified to the sent with the response. + To be added. ++ is . + @@ -76,10 +102,22 @@ - To be added. - To be added. - To be added. + + Athat contains the name of the HTTP header to append to. + + + A that contains the value to append to the HTTP header. + + + Appends a to the specified HTTP header sent with the response. + To be added. ++ +is or . + + The length of is greater than 65,535 characters. + @@ -91,7 +129,10 @@ @@ -107,10 +148,23 @@- To be added. ++ Sends the response to the client and releases the resources associated with + the instance. + To be added. - To be added. - To be added. - To be added. + + An array ofthat contains the response entity body data. + + + true if this method blocks execution while flushing the stream to the client; otherwise,false . + ++ Sends the response with the specified array of to the client and + releases the resources associated with the instance. + To be added. ++ +is . + + This object is closed. + @@ -121,9 +175,19 @@ System.Text.Encoding - To be added. -To be added. ++ Gets or sets the encoding that can be used with the entity body data included in the response. + ++ A that contains the encoding that can be used with the entity body data. + To be added. ++ This object is closed. + ++ The response has been sent already. + @@ -134,9 +198,23 @@ System.Int64 - To be added. -To be added. ++ Gets or sets the size of the entity body data included in the response. + ++ A that contains the value of the Content-Length entity-header field. + The value is a number of bytes in the entity body data. + To be added. ++ This object is closed. + ++ The response has been sent already. + ++ The value specified for a set operation is less than zero. + @@ -147,9 +225,26 @@ System.String - To be added. -To be added. ++ Gets or sets the media type of the entity body included in the response. + ++ The type of the content. + A that contains the value of the Content-Type entity-header field. + To be added. ++ This object is closed. + ++ The response has been sent already. + ++ The value specified for a set operation is +. + + The value specified for a set operation is a . + @@ -160,8 +255,12 @@ @@ -176,8 +275,12 @@WebSocketSharp.Net.CookieCollection - To be added. -To be added. ++ Gets or sets the cookies returned with the response. + ++ A that contains the cookies returned with the response. + To be added. - To be added. - @@ -189,8 +292,12 @@To be added. + + Ato copy. + + + Copies properties from the specified to this response. + To be added. WebSocketSharp.Net.WebHeaderCollection - @@ -202,9 +309,20 @@To be added. -To be added. ++ Gets or sets the HTTP headers returned to the client. + ++ A that contains the HTTP headers returned to the client. + To be added. System.Boolean - To be added. -To be added. ++ Gets or sets a value indicating whether the server requests a persistent connection. + ++ true if the server requests a persistent connection; otherwise,false . + The default istrue . +To be added. ++ This object is closed. + ++ The response has been sent already. + @@ -215,9 +333,16 @@ System.IO.Stream - To be added. -To be added. ++ Gets a +to use to write the entity body data. + + A to use to write the entity body data. + To be added. ++ This object is closed. + @@ -228,9 +353,26 @@ System.Version - To be added. -To be added. ++ Gets or sets the HTTP version used in the response. + ++ A that contains the HTTP version used in the response. + To be added. ++ This object is closed. + ++ The response has been sent already. + ++ The value specified for a set operation is +. + + The value specified for a set operation does not have its Major property set to 1 or + does not have itsMinor property set to either 0 or 1. +@@ -244,8 +386,12 @@ @@ -257,9 +403,22 @@- To be added. - To be added. + + Athat contains a URL to redirect the client's request to. + + + Configures the response to redirect the client's request to the specified . + To be added. System.String - To be added. -To be added. ++ Gets or sets the URL to which the client is redirected to locate a requested resource. + ++ A that contains the value of the Location response-header field. + To be added. ++ This object is closed. + ++ The response has been sent already. + ++ The value specified for a set operation is a . + @@ -270,9 +429,19 @@ System.Boolean - To be added. -To be added. ++ Gets or sets a value indicating whether the response uses the chunked transfer encoding. + ++ true if the response uses the chunked transfer encoding; otherwise,false . +To be added. ++ This object is closed. + ++ The response has been sent already. + @@ -286,9 +455,20 @@ - To be added. - To be added. + + Ato set. + + + Adds or updates a in the sent with the response. + To be added. ++ +is . + + already exists in the and + could not be replaced. + @@ -299,9 +479,23 @@ System.Int32 - To be added. -To be added. ++ Gets or sets the HTTP status code returned to the client. + ++ An that indicates the HTTP status code for the response to the request. + The default is . + To be added. ++ This object is closed. + ++ The response has been sent already. + ++ The value specified for a set operation is invalid. Valid values are between 100 and 999. + @@ -312,8 +506,12 @@ @@ -326,7 +524,9 @@System.String - To be added. -To be added. ++ Gets or sets a description of the HTTP status code returned to the client. + ++ A that contains a description of the HTTP status code returned to the client. + To be added. - diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp.Server/HttpRequestEventArgs.xml b/websocket-sharp/doc/mdoc/WebSocketSharp.Server/HttpRequestEventArgs.xml index d729435b..1eade0c0 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp.Server/HttpRequestEventArgs.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp.Server/HttpRequestEventArgs.xml @@ -14,8 +14,8 @@To be added. ++ Releases all resource used by the . + To be added. An HTTP request event occurs when a instance receives an HTTP request. - If you want to get the HTTP request objects, you should access the property. - If you want to get the HTTP response objects to send, you should access the property. + If you want to get the HTTP request objects, you should access the property. + If you want to get the HTTP response objects to send, you should access the property. diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp/CloseEventArgs.xml b/websocket-sharp/doc/mdoc/WebSocketSharp/CloseEventArgs.xml index 29697f3a..0a3edf0c 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp/CloseEventArgs.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp/CloseEventArgs.xml @@ -14,8 +14,8 @@ The event occurs when the WebSocket receives a close control frame or - the WebSocket.Close method is called. If you want to get the reason for closure, you should access theor - properties. + the WebSocket.Close method is called. If you want to get the reason for closure, you should access + theor properties. @@ -62,10 +62,10 @@ diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp/Ext.xml b/websocket-sharp/doc/mdoc/WebSocketSharp/Ext.xml index 0d3e15d3..fbbad4eb 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp/Ext.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp/Ext.xml @@ -76,6 +76,40 @@ + - Indicates whether the connection closed cleanly or not. + Indicates whether the WebSocket connection closed cleanly. - true if the connection closed cleanly; otherwise,false . +true if the WebSocket connection closed cleanly; otherwise,false .To be added. + + + Method ++ +System.Boolean ++ ++ + ++ ++ +System.ParamArray ++ + A +to test. + + + An array of that contains characters to find. + + + Determines whether the specified +contains any of characters + in the specified array of . + + +true ifcontains any of ; otherwise, false . +To be added. ++ @@ -403,7 +437,34 @@ Determines whether the specified is a . - +true if theparameter is a ; otherwise, false . +true ifis ; otherwise, false . +To be added. + ++ ++ + Method ++ +System.Boolean ++ ++ + + + A diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp/MessageEventArgs.xml b/websocket-sharp/doc/mdoc/WebSocketSharp/MessageEventArgs.xml index 70599855..b7ed5f48 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp/MessageEventArgs.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp/MessageEventArgs.xml @@ -31,7 +31,7 @@ Gets the received data as ato test. + + + A that contains character to find. + + + Determines whether the specified +is enclosed in the specified . + + true ifis enclosed in ; otherwise, false .To be added. . - A that contains a received data. + A that contains the received data. To be added. @@ -48,7 +48,7 @@ Gets the received data as an array of. - An array of that contains a received data. + An array of that contains the received data. To be added. @@ -62,10 +62,10 @@diff --git a/websocket-sharp/doc/mdoc/index.xml b/websocket-sharp/doc/mdoc/index.xml index 59088694..3e800560 100644 --- a/websocket-sharp/doc/mdoc/index.xml +++ b/websocket-sharp/doc/mdoc/index.xml @@ -1,6 +1,6 @@ - Gets the type of received data. + Gets the type of the received data. - One of the that indicates the type of received data. + One of the values that indicates the type of the received data. To be added. - + [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 ] @@ -141,6 +141,42 @@ + + ++ + ++ + ExtensionMethod ++ +System.Boolean ++ ++ + ++ ++ +System.ParamArray ++ + A + +to test. + + + An array of that contains characters to find. + + + Determines whether the specified +contains any of characters + in the specified array of . + + @@ -500,6 +536,35 @@ + + ++ + ++ + ExtensionMethod ++ +System.Boolean ++ ++ + + + A + +to test. + + + A that contains character to find. + + + Determines whether the specified +is enclosed in the specified . + diff --git a/websocket-sharp/websocket-sharp.pidb b/websocket-sharp/websocket-sharp.pidb index c65d8469..a4b6ce7e 100644 Binary files a/websocket-sharp/websocket-sharp.pidb and b/websocket-sharp/websocket-sharp.pidb differ