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