|
|
|
@ -629,10 +629,17 @@ namespace WebSocketSharp.Server
|
|
|
|
/// Gets or sets the wait time for the response to
|
|
|
|
/// Gets or sets the wait time for the response to
|
|
|
|
/// the WebSocket Ping or Close.
|
|
|
|
/// the WebSocket Ping or Close.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
|
|
/// The set operation does nothing if the server has already
|
|
|
|
|
|
|
|
/// started or it is shutting down.
|
|
|
|
|
|
|
|
/// </remarks>
|
|
|
|
/// <value>
|
|
|
|
/// <value>
|
|
|
|
/// A <see cref="TimeSpan"/> that represents the wait time for
|
|
|
|
/// A <see cref="TimeSpan"/> that represents the wait time for
|
|
|
|
/// the response. The default value is the same as 1 second.
|
|
|
|
/// the response. The default value is the same as 1 second.
|
|
|
|
/// </value>
|
|
|
|
/// </value>
|
|
|
|
|
|
|
|
/// <exception cref="ArgumentException">
|
|
|
|
|
|
|
|
/// The value specified for a set operation is zero or less.
|
|
|
|
|
|
|
|
/// </exception>
|
|
|
|
public TimeSpan WaitTime {
|
|
|
|
public TimeSpan WaitTime {
|
|
|
|
get {
|
|
|
|
get {
|
|
|
|
return _services.WaitTime;
|
|
|
|
return _services.WaitTime;
|
|
|
|
|