我想設置IP地址和域限制在C#代碼,我下面this文章,但它給了我無法識別的位置誤差。IIS錯誤:無法識別的配置路徑「MACHINE/WEBROOT/APPHOST/websiteName
Error: Unrecognized configuration path 'MACHINE/WEBROOT/APPHOST/websiteName
我的代碼:
using (var serverManager = new ServerManager())
{
var config = serverManager.GetApplicationHostConfiguration();
var ipSecuritySection = config.GetSection("system.webServer/security/ipSecurity", "websiteName");
var ipSecurityCollection = ipSecuritySection.GetCollection();
var addElement = ipSecurityCollection.CreateElement("add");
addElement["ipAddress"] = @"SomeIP";
addElement["allowed"] = false;
ipSecurityCollection.Add(addElement);
var addElement1 = ipSecurityCollection.CreateElement("add");
addElement1["ipAddress"] = @"SomeIP";
addElement1["subnetMask"] = @"255.255.0.0";
addElement1["allowed"] = false;
ipSecurityCollection.Add(addElement1);
serverManager.CommitChanges();
}
它給了我這個錯誤行之後:
var ipSecuritySection = config.GetSection("system.webServer/security/ipSecurity", "websiteName");
任何一個可以告訴什麼是錯,什麼是我錯過了。
您是否在運行具有管理員權限的Visual Studio? –
@PankajKapare:我曾嘗試使用管理員privilages運行visual studio,但它給出了相同的錯誤。 –
在第3行中,您使用的是「erverManager」而不是serverManager。我相信它的錯字。 –