Thứ Bảy, 19 tháng 11, 2016

Enabling Windows Authentication in Katana

https://www.asp.net/aspnet/overview/owin-and-katana/enabling-windows-authentication-in-katana

using System.Net;

namespace Owin
{
    public static class WindowsAuthenticationExtensions
    {
        public static IAppBuilder UseWindowsAuthentication(this IAppBuilder app)
        {
            object value;
            if (app.Properties.TryGetValue("System.Net.HttpListener", out value))
            {
                var listener = value as HttpListener;
                if (listener != null)
                {
                    listener.AuthenticationSchemes =
                        AuthenticationSchemes.IntegratedWindowsAuthentication;
                }
            }

            return app;
        }
    }
}

Không có nhận xét nào :

Đăng nhận xét