[Modify] Edit it

This commit is contained in:
sta 2017-06-10 17:23:45 +09:00
parent 654c648ec8
commit d0d845716c

View File

@ -1302,14 +1302,21 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Gets the contents of the file with the specified <paramref name="path"/>. /// Gets the file with the specified <paramref name="path"/> from
/// the document folder of the server.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// An array of <see cref="byte"/> that receives the contents of the file, /// <para>
/// or <see langword="null"/> if it doesn't exist. /// An array of <see cref="byte"/> or <see langword="null"/>
/// if not found.
/// </para>
/// <para>
/// That array represents the contents of the file.
/// </para>
/// </returns> /// </returns>
/// <param name="path"> /// <param name="path">
/// A <see cref="string"/> that represents the virtual path to the file to find. /// A <see cref="string"/> that represents a virtual path to
/// the file to find from the document folder.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="path"/> is <see langword="null"/>. /// <paramref name="path"/> is <see langword="null"/>.