5 writes to Transport
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionDispatcher.cs (3)
24Transport = nameof(HttpTransportType.WebSockets), 31Transport = nameof(HttpTransportType.ServerSentEvents), 38Transport = nameof(HttpTransportType.LongPolling),
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
284availableTransport.Transport = reader.ReadAsString(TransportPropertyName);
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
NegotiateProtocolBenchmark.cs (1)
32Transport = "WebSockets",
7 references to Transport
Microsoft.AspNetCore.Http.Connections.Client (3)
HttpConnection.cs (3)
364if (!Enum.TryParse<HttpTransportType>(transport.Transport, out var transportType)) 366Log.TransportNotSupported(_logger, transport.Transport!); 367transportExceptions.Add(new TransportFailedException(transport.Transport!, "The transport is not supported by the client."));
Microsoft.AspNetCore.Http.Connections.Common (3)
NegotiateProtocol.cs (3)
104if (availableTransport.Transport != null) 106writer.WriteString(TransportPropertyNameBytes, availableTransport.Transport); 315if (availableTransport.Transport == null)
Microsoft.AspNetCore.Http.Connections.Tests (1)
NegotiateProtocolTests.cs (1)
43var responseTransports = response.AvailableTransports.Select(t => t.Transport).ToList();