File: TestHelpers.cs | Web Access |
Project: src\src\SignalR\common\testassets\Tests.Utils\Microsoft.AspNetCore.SignalR.Tests.Utils.csproj (Microsoft.AspNetCore.SignalR.Tests.Utils) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Net.WebSockets; namespace Microsoft.AspNetCore.SignalR.Tests; public static class TestHelpers { public static bool IsWebSocketsSupported() { try { new ClientWebSocket().Dispose(); return true; } catch { return false; } } } |