4 writes to TransferFormats
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionDispatcher.cs (3)
26TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) } 33TransferFormats = new List<string> { nameof(TransferFormat.Text) } 40TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) }
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
293availableTransport.TransferFormats = new List<string>();
5 references to TransferFormats
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)