using System;
namespace Microsoft.AspNetCore.Http.Connections
{
///
/// Options used to configure the long polling transport.
///
public class LongPollingOptions
{
///
/// Gets or sets the poll timeout.
///
public TimeSpan PollTimeout { get; set; } = TimeSpan.FromSeconds(90);
}
}