aspnetcore/src/Microsoft.AspNet.Hosting/ServerFactoryProvider.cs

13 lines
319 B
C#

using System;
using Microsoft.AspNet.Hosting.Server;
namespace Microsoft.AspNet.Hosting
{
public class ServerFactoryProvider : IServerFactoryProvider
{
public IServerFactory GetServerFactory(string serverFactoryIdentifier)
{
throw new NotImplementedException();
}
}
}