In Central Administration\Manage Web Applications, there is the ability to enable anonymous access on a web application through the authentication providers. Is there a way to programmatically determine if this option is enabled? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This should work for you:
I started with web, but you can start wherever you need obviously. Also make sure you look at the appropriate zone. |
|||
|
|
|
The SPWeb object expose the following boolean : AllowAnonymousAccess example :
MSDN : Gets a Boolean value that indicates whether anonymous access is allowed for the website |
|||
|
|