1 implementation of IWebHost
MockHostTypes (1)
WebHost.cs (1)
8
public class WebHost :
IWebHost
6 references to IWebHost
BuildWebHostInvalidSignature (1)
Program.cs (1)
15
public static
IWebHost
BuildWebHost() => null;
BuildWebHostPatternTestSite (1)
Program.cs (1)
14
public static
IWebHost
BuildWebHost(string[] args) => new WebHost();
CreateWebHostBuilderInvalidSignature (1)
Program.cs (1)
15
public static
IWebHost
CreateWebHostBuilder(string[] args) => new WebHost();
CreateWebHostBuilderPatternTestSite (1)
Program.cs (1)
12
var
webHost = CreateWebHostBuilder(args).Build();
MockHostTypes (2)
IWebHostBuilder.cs (1)
8
IWebHost
Build();
WebHostBuilder.cs (1)
8
public
IWebHost
Build() => new WebHost();