16 lines
380 B
C#
16 lines
380 B
C#
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Http.Connections
|
|
{
|
|
/// <summary>
|
|
/// Options used to configure the long polling transport.
|
|
/// </summary>
|
|
public class LongPollingOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the poll timeout.
|
|
/// </summary>
|
|
public TimeSpan PollTimeout { get; set; } = TimeSpan.FromSeconds(90);
|
|
}
|
|
}
|