[Modify] Edit it

This commit is contained in:
sta 2017-06-28 15:40:35 +09:00
parent cf98f324e4
commit e1c1775c25

View File

@ -1337,13 +1337,13 @@ namespace WebSocketSharp.Server
} }
/// <summary> /// <summary>
/// Gets the file with the specified <paramref name="path"/> from /// Gets the contents of the specified file from the document
/// the document folder of the server. /// folder of the server.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <para> /// <para>
/// An array of <see cref="byte"/> or <see langword="null"/> /// An array of <see cref="byte"/> or <see langword="null"/>
/// if not found. /// if it fails.
/// </para> /// </para>
/// <para> /// <para>
/// That array represents the contents of the file. /// That array represents the contents of the file.
@ -1351,7 +1351,7 @@ namespace WebSocketSharp.Server
/// </returns> /// </returns>
/// <param name="path"> /// <param name="path">
/// A <see cref="string"/> that represents a virtual path to /// A <see cref="string"/> that represents a virtual path to
/// the file to find from the document folder. /// find the file 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"/>.
@ -1364,7 +1364,7 @@ namespace WebSocketSharp.Server
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// <paramref name="path"/> is an invalid path. /// <paramref name="path"/> contains "..".
/// </para> /// </para>
/// </exception> /// </exception>
[Obsolete ("This method will be removed.")] [Obsolete ("This method will be removed.")]