[Modify] Edit it

This commit is contained in:
sta 2017-06-18 15:30:58 +09:00
parent f4a9d92277
commit 98d8d02fd7

View File

@ -32,19 +32,21 @@ using WebSocketSharp.Net;
namespace WebSocketSharp.Server namespace WebSocketSharp.Server
{ {
/// <summary> /// <summary>
/// Represents the event data for the HTTP request event that the <see cref="HttpServer"/> emits. /// Represents the event data for the HTTP request events of
/// the <see cref="HttpServer"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// An HTTP request event occurs when the <see cref="HttpServer"/> receives an HTTP request. /// An HTTP request event occurs when the <see cref="HttpServer"/>
/// receives an HTTP request.
/// </para> /// </para>
/// <para> /// <para>
/// If you would like to get the request data sent from a client, /// You should access the <see cref="Request"/> property if you would
/// you should access the <see cref="Request"/> property. /// like to get the request data sent from a client.
/// </para> /// </para>
/// <para> /// <para>
/// And if you would like to get the response data used to return a response, /// And you should access the <see cref="Response"/> property if you would
/// you should access the <see cref="Response"/> property. /// like to get the response data to return to the client.
/// </para> /// </para>
/// </remarks> /// </remarks>
public class HttpRequestEventArgs : EventArgs public class HttpRequestEventArgs : EventArgs