[Modify] Edit it

This commit is contained in:
sta 2017-12-15 16:11:41 +09:00
parent e8ee51efa9
commit 8a58777298

View File

@ -1843,17 +1843,30 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Converts the order of the specified array of <see cref="byte"/> to the host byte order. /// Converts the order of elements in the specified byte array to
/// host (this computer architecture) byte order.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// An array of <see cref="byte"/> converted from <paramref name="source"/>. /// <para>
/// An array of <see cref="byte"/> converted from
/// <paramref name="source"/>.
/// </para>
/// <para>
/// Or <paramref name="source"/> if the number of elements in it
/// is less than 2 or <paramref name="sourceOrder"/> is same as
/// host byte order.
/// </para>
/// </returns> /// </returns>
/// <param name="source"> /// <param name="source">
/// An array of <see cref="byte"/> to convert. /// An array of <see cref="byte"/> to convert.
/// </param> /// </param>
/// <param name="sourceOrder"> /// <param name="sourceOrder">
/// One of the <see cref="ByteOrder"/> enum values, specifies the byte order of /// <para>
/// <paramref name="source"/>. /// One of the <see cref="ByteOrder"/> enum values.
/// </para>
/// <para>
/// It specifies the order of elements in <paramref name="source"/>.
/// </para>
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="source"/> is <see langword="null"/>. /// <paramref name="source"/> is <see langword="null"/>.