how to get authentication provider status list from IIS. For share point site?

483 Views Asked by At

I need to get the authentication provider status of i web application available in IIS?.

Ex:

Is Basic Authentication available for X site?. through c# or python code

1

There are 1 best solutions below

2
On BEST ANSWER

Try to use code like this:

    using (SPSite site = new SPSite("site_url_here"))
    {
      var webApp = site.WebApplication;
      var customZoneSettings = webApp.IisSettings[Microsoft.SharePoint.Administration.SPUrlZone.Custom];
      bool useBasicForCustomZone = customZoneSettings.UseBasicAuthentication;
    }

Here you get parent SPWebApplication for specified site and looking for its IisSettings for specified zone (because there could be different settings for different zones). SPIisSettings object contains a lot of properties which will help to complete your task, for example, UseBasicAuthentication.