3 implementations of SupportedFormats
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
203public TransferFormat SupportedFormats { get; set; }
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
37public TransferFormat SupportedFormats { get; set; } = TransferFormat.Text | TransferFormat.Binary;
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
TestClient.cs (1)
37public TransferFormat SupportedFormats { get; set; } = TransferFormat.Text | TransferFormat.Binary;
2 references to SupportedFormats
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
1818Assert.Equal(expectedTransferFormats.Value, transferFormatFeature.SupportedFormats);
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
566if ((transferFormatFeature.SupportedFormats & Protocol.TransferFormat) == 0)