13 references to Text
Microsoft.AspNetCore.Http.Connections (6)
Internal\HttpConnectionContext.cs (2)
94SupportedFormats = TransferFormat.Binary | TransferFormat.Text; 95ActiveFormat = TransferFormat.Text;
Internal\HttpConnectionDispatcher.cs (4)
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) } 301connection.SupportedFormats = TransferFormat.Text;
Microsoft.AspNetCore.Http.Connections.Client (4)
Internal\LongPollingTransport.cs (1)
45if (transferFormat != TransferFormat.Binary && transferFormat != TransferFormat.Text)
Internal\ServerSentEventsTransport.cs (1)
48if (transferFormat != TransferFormat.Text)
Internal\WebSocketsTransport.cs (2)
291if (transferFormat != TransferFormat.Binary && transferFormat != TransferFormat.Text) 409await StartAsync(url, _webSocketMessageType == WebSocketMessageType.Binary ? TransferFormat.Binary : TransferFormat.Text,
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
80public TransferFormat TransferFormat => TransferFormat.Text;
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
70public TransferFormat TransferFormat => TransferFormat.Text;
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
37public TransferFormat SupportedFormats { get; set; } = TransferFormat.Text | TransferFormat.Binary;