29 lines
836 B
C#
29 lines
836 B
C#
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.AspNetCore.Server.HttpSys;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
|
||
|
namespace WebApplication61
|
||
|
{
|
||
|
public class Program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
CreateHostBuilder(args).Build().Run();
|
||
|
}
|
||
|
#region snippet
|
||
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
|
Host.CreateDefaultBuilder(args)
|
||
|
.ConfigureWebHostDefaults(webBuilder =>
|
||
|
{
|
||
|
// ...
|
||
|
webBuilder.UseHttpSys(options =>
|
||
|
{
|
||
|
options.RequestQueueName = "MyExistingQueue";
|
||
|
options.RequestQueueMode = RequestQueueMode.CreateOrAttach;
|
||
|
});
|
||
|
});
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
}
|