File: Program.cs
Web Access
Project: src\src\Security\Authentication\Negotiate\samples\NegotiateAuthSample\NegotiateAuthSample.csproj (NegotiateAuthSample)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Server.HttpSys;
 
namespace NegotiateAuthSample;
 
public class Program
{
    public static void Main(string[] args)
    {
        CreateHostBuilder(args).Build().Run();
    }
 
    public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .ConfigureWebHostDefaults(webBuilder =>
            {
                if (string.Equals("HttpSys", webBuilder.GetSetting("server"), StringComparison.OrdinalIgnoreCase))
                {
                    webBuilder.UseHttpSys(options =>
                    {
                        options.Authentication.AllowAnonymous = true;
                        options.Authentication.Schemes = AuthenticationSchemes.Negotiate;
                    });
                }
                webBuilder.UseStartup<Startup>();
            });
}