4 writes to TransferFormats
Microsoft.AspNetCore.Http.Connections (3)
Internal\HttpConnectionDispatcher.cs (3)
28TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) } 35TransferFormats = new List<string> { nameof(TransferFormat.Text) } 42TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) }
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiateProtocol.cs (1)
306availableTransport.TransferFormats = new List<string>();
6 references to TransferFormats
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
399else if (!transport.TransferFormats!.Contains(transferFormatString, StringComparer.Ordinal))
Microsoft.AspNetCore.Http.Connections.Common (5)
NegotiateProtocol.cs (5)
122if (availableTransport.TransferFormats != null) 124var formatCount = availableTransport.TransferFormats.Count; 127writer.WriteStringValue(availableTransport.TransferFormats[j]); 312availableTransport.TransferFormats.Add(reader.GetString()!); 333if (availableTransport.TransferFormats == null)