File: LongPollingOptions.cs | Web Access |
Project: src\src\SignalR\common\Http.Connections\src\Microsoft.AspNetCore.Http.Connections.csproj (Microsoft.AspNetCore.Http.Connections) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. 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); } |