以下のコードを使用して、IIS7 のアプリケーションで匿名アクセスを有効にしようとしています。
ConfigurationSection config = server.GetWebConfiguration(webSiteName).GetSection("system.webServer/security/authentication/anonymousAuthentication", "/" + applicationName);
config.OverrideMode = OverrideMode.Allow;
config["enabled"] = true;
ただし、次のエラーが発生します。
Failed: The request is not supported. (Exception from HRESULT: 0x80070032)
アプリケーションの匿名アクセスを変更するにはどうすればよいですか?
ありがとう、ng93