Modified some xml doc comments

This commit is contained in:
sta 2014-09-22 11:22:47 +09:00
parent 56acccdda1
commit b6b30e04d0
2 changed files with 28 additions and 28 deletions

View File

@ -451,9 +451,9 @@ namespace WebSocketSharp.Server
/// An array of <see cref="byte"/> that represents the binary data to send. /// An array of <see cref="byte"/> that represents the binary data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
protected void SendAsync (byte[] data, Action<bool> completed) protected void SendAsync (byte[] data, Action<bool> completed)
{ {
@ -462,8 +462,8 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends the specified <paramref name="file"/> as a binary data asynchronously to the client /// Sends the specified <paramref name="file"/> as a binary data asynchronously
/// on the current session. /// to the client on the current session.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
@ -477,9 +477,9 @@ namespace WebSocketSharp.Server
/// A <see cref="FileInfo"/> that represents the file to send. /// A <see cref="FileInfo"/> that represents the file to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
protected void SendAsync (FileInfo file, Action<bool> completed) protected void SendAsync (FileInfo file, Action<bool> completed)
{ {
@ -502,9 +502,9 @@ namespace WebSocketSharp.Server
/// A <see cref="string"/> that represents the text data to send. /// A <see cref="string"/> that represents the text data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
protected void SendAsync (string data, Action<bool> completed) protected void SendAsync (string data, Action<bool> completed)
{ {
@ -513,8 +513,8 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Sends a binary data from the specified <see cref="Stream"/> asynchronously to the client /// Sends a binary data from the specified <see cref="Stream"/> asynchronously
/// on the current session. /// to the client on the current session.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
@ -531,9 +531,9 @@ namespace WebSocketSharp.Server
/// An <see cref="int"/> that represents the number of bytes to send. /// An <see cref="int"/> that represents the number of bytes to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
protected void SendAsync (Stream stream, int length, Action<bool> completed) protected void SendAsync (Stream stream, int length, Action<bool> completed)
{ {

View File

@ -1981,9 +1981,9 @@ namespace WebSocketSharp
/// An array of <see cref="byte"/> that represents the binary data to send. /// An array of <see cref="byte"/> that represents the binary data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
public void SendAsync (byte[] data, Action<bool> completed) public void SendAsync (byte[] data, Action<bool> completed)
{ {
@ -2009,9 +2009,9 @@ namespace WebSocketSharp
/// A <see cref="FileInfo"/> that represents the file to send. /// A <see cref="FileInfo"/> that represents the file to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
public void SendAsync (FileInfo file, Action<bool> completed) public void SendAsync (FileInfo file, Action<bool> completed)
{ {
@ -2036,9 +2036,9 @@ namespace WebSocketSharp
/// A <see cref="string"/> that represents the text data to send. /// A <see cref="string"/> that represents the text data to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
public void SendAsync (string data, Action<bool> completed) public void SendAsync (string data, Action<bool> completed)
{ {
@ -2067,9 +2067,9 @@ namespace WebSocketSharp
/// An <see cref="int"/> that represents the number of bytes to send. /// An <see cref="int"/> that represents the number of bytes to send.
/// </param> /// </param>
/// <param name="completed"> /// <param name="completed">
/// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when the send is /// An <c>Action&lt;bool&gt;</c> delegate that references the method(s) called when
/// complete. A <see cref="bool"/> passed to this delegate is <c>true</c> if the send is /// the send is complete. A <see cref="bool"/> passed to this delegate is <c>true</c>
/// complete successfully. /// if the send is complete successfully.
/// </param> /// </param>
public void SendAsync (Stream stream, int length, Action<bool> completed) public void SendAsync (Stream stream, int length, Action<bool> completed)
{ {