5 writes to TransferFormats
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionDispatcher.cs (3)
25TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) } 32TransferFormats = new List<string> { nameof(TransferFormat.Text) } 39TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) }
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
293availableTransport.TransferFormats = new List<string>();
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
NegotiateProtocolBenchmark.cs (1)
33TransferFormats = new List<string>
6 references to TransferFormats
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
392else if (!transport.TransferFormats!.Contains(transferFormatString, StringComparer.Ordinal))
Microsoft.AspNetCore.Http.Connections.Common (5)
NegotiateProtocol.cs (5)
115if (availableTransport.TransferFormats != null) 117var formatCount = availableTransport.TransferFormats.Count; 120writer.WriteStringValue(availableTransport.TransferFormats[j]); 299availableTransport.TransferFormats.Add(reader.GetString()!); 320if (availableTransport.TransferFormats == null)