[Modify] Edit it

This commit is contained in:
sta 2017-09-17 14:21:28 +09:00
parent f28ce31deb
commit 1c1d9d998c

View File

@ -270,11 +270,19 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Gets the wait time for the response to the WebSocket Ping or Close.
/// Gets or sets the time to wait for the response to the WebSocket Ping or
/// Close.
/// </summary>
/// <remarks>
/// The set operation does nothing if the service has already started or
/// it is shutting down.
/// </remarks>
/// <value>
/// A <see cref="TimeSpan"/> that represents the wait time.
/// A <see cref="TimeSpan"/> to wait for the response.
/// </value>
/// <exception cref="ArgumentOutOfRangeException">
/// The value specified for a set operation is zero or less.
/// </exception>
public TimeSpan WaitTime {
get {
return _waitTime;