4 writes to Transport
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionDispatcher.cs (3)
27Transport = nameof(HttpTransportType.WebSockets), 34Transport = nameof(HttpTransportType.ServerSentEvents), 41Transport = nameof(HttpTransportType.LongPolling),
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
297availableTransport.Transport = reader.ReadAsString(TransportPropertyName);
6 references to Transport
Microsoft.AspNetCore.Http.Connections.Client (3)
HttpConnection.cs (3)
371if (!Enum.TryParse<HttpTransportType>(transport.Transport, out var transportType)) 373Log.TransportNotSupported(_logger, transport.Transport!); 374transportExceptions.Add(new TransportFailedException(transport.Transport!, "The transport is not supported by the client."));
Microsoft.AspNetCore.Http.Connections.Common (3)
NegotiateProtocol.cs (3)
111if (availableTransport.Transport != null) 113writer.WriteString(TransportPropertyNameBytes, availableTransport.Transport); 328if (availableTransport.Transport == null)