| File: HttpTransports.cs | Web Access |
| Project: src\aspnetcore\src\SignalR\common\Http.Connections.Common\src\Microsoft.AspNetCore.Http.Connections.Common.csproj (Microsoft.AspNetCore.Http.Connections.Common) |
// 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> /// Constants related to HTTP transports. /// </summary> public static class HttpTransports { /// <summary> /// A bitmask combining all available <see cref="HttpTransportType"/> values. /// </summary> public static readonly HttpTransportType All = HttpTransportType.WebSockets | HttpTransportType.ServerSentEvents | HttpTransportType.LongPolling; }