Skip to content

Commit 1c1d9d9

Browse files
committed
[Modify] Edit it
1 parent f28ce31 commit 1c1d9d9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

websocket-sharp/Server/WebSocketSessionManager.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,19 @@ public IEnumerable<IWebSocketSession> Sessions {
270270
}
271271

272272
/// <summary>
273-
/// Gets the wait time for the response to the WebSocket Ping or Close.
273+
/// Gets or sets the time to wait for the response to the WebSocket Ping or
274+
/// Close.
274275
/// </summary>
276+
/// <remarks>
277+
/// The set operation does nothing if the service has already started or
278+
/// it is shutting down.
279+
/// </remarks>
275280
/// <value>
276-
/// A <see cref="TimeSpan"/> that represents the wait time.
281+
/// A <see cref="TimeSpan"/> to wait for the response.
277282
/// </value>
283+
/// <exception cref="ArgumentOutOfRangeException">
284+
/// The value specified for a set operation is zero or less.
285+
/// </exception>
278286
public TimeSpan WaitTime {
279287
get {
280288
return _waitTime;

0 commit comments

Comments
 (0)