12 references to Binary
Microsoft.AspNetCore.Components.Server (1)
BlazorPack\BlazorPackHubProtocol.cs (1)
30public TransferFormat TransferFormat => TransferFormat.Binary;
Microsoft.AspNetCore.Http.Connections (4)
Internal\HttpConnectionContext.cs (1)
94SupportedFormats = TransferFormat.Binary | TransferFormat.Text;
Internal\HttpConnectionDispatcher.cs (2)
28TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) } 42TransferFormats = new List<string> { nameof(TransferFormat.Text), nameof(TransferFormat.Binary) }
Internal\Transports\WebSocketsServerTransport.cs (1)
228var webSocketMessageType = (_connection.ActiveFormat == TransferFormat.Binary
Microsoft.AspNetCore.Http.Connections.Client (5)
HttpConnectionOptions.cs (1)
251public TransferFormat DefaultTransferFormat { get; set; } = TransferFormat.Binary;
Internal\LongPollingTransport.cs (1)
45if (transferFormat != TransferFormat.Binary && transferFormat != TransferFormat.Text)
Internal\WebSocketsTransport.cs (3)
291if (transferFormat != TransferFormat.Binary && transferFormat != TransferFormat.Text) 296_webSocketMessageType = transferFormat == TransferFormat.Binary 409await StartAsync(url, _webSocketMessageType == WebSocketMessageType.Binary ? TransferFormat.Binary : TransferFormat.Text,
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocol.cs (1)
33public TransferFormat TransferFormat => TransferFormat.Binary;
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;