C#IIS를 작동하여 응용 프로그램 풀을 생성할 때 예외: 잘못된 색인솔루션
관련 코드:
public static string CreateAppPool(string appPoolName, string frameworkVersion, string managedPipelineMode) { DirectoryEntry rootfolder = new DirectoryEntry("IIS://localhost/W3SVC/APPPOOLS"); try { DirectoryEntry appPool = rootfolder.Children.Add(appPoolName, "IIsApplicationPool"); if (appPool.Properties.Contains("AppPoolCommand")) { appPool.Properties["AppPoolCommand"][0] = "1"; } if (appPool.Properties.Contains("ManagedRuntimeVersion")) { appPool.Properties["ManagedRuntimeVersion"][0] = "v4.0"; } //以下代码在WindowsServer2008版本为6.0的系统上会出现异常: //无效索引(Exception from HRESULT:0x80070585) //if (appPool.Properties.Contains("AppPoolIdentityType")) //{ // appPool.Properties["AppPoolIdentityType"][0] = "4"; //} if (appPool.Properties.Contains("Enable32BitAppOnWin64")) { appPool.Properties["Enable32BitAppOnWin64"][0] = true; } appPool.CommitChanges(); return null; } catch (System.Exception ex) { LogToFile.Save(ex, "CreateAppPool"); return ex.Message; } }
는 이후에 해당 코드 주석 은 웹 애플리케이션에 영향을 미치지 않습니다.
위 내용은 C#에서 IIS를 작동하여 응용 프로그램 풀을 만들 때 예외가 발생합니다. 잘못된 인덱스에 대한 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!