// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Microsoft.Diagnostics.NETCore.Client.WebSocketServer;
// This interface allows dotnet-dsrouter to install a callback that will create IWebSocketServer instances.
// This is used to avoid a dependency on ASP.NET in the client library.
internal static class WebSocketServerProvider
{
internal static void SetProvider(Func<IWebSocketServer> provider)
{
_provider = provider;
}
internal static IWebSocketServer GetWebSocketServerInstance()
{
return _provider();
}
private static Func<IWebSocketServer> _provider;
}
|