ManagementUnit.ConfigurationPath Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft die Konfigurationspfadinformationen für die aktuelle Verwaltungseinheit ab.
public:
property Microsoft::Web::Management::Server::ManagementConfigurationPath ^ ConfigurationPath { Microsoft::Web::Management::Server::ManagementConfigurationPath ^ get(); };
public Microsoft.Web.Management.Server.ManagementConfigurationPath ConfigurationPath { get; }
member this.ConfigurationPath : Microsoft.Web.Management.Server.ManagementConfigurationPath
Public ReadOnly Property ConfigurationPath As ManagementConfigurationPath
Eigenschaftswert
Eine ManagementConfigurationPath , die Konfigurationspfadinformationen für die aktuelle Verwaltungseinheit enthält.
Beispiele
Das folgende Beispiel zeigt die Verwendung der ConfigurationPath -Eigenschaft. Wenn die TraceCnfPath
Methode aufgerufen wird, wenn der IIS-Manager über den App_Data
Ordner oder die ra
Anwendung unter der Standardwebsite verfügt, wird die folgende Ablaufverfolgungsausgabe angezeigt.
ConfigurationPath.ApplicationPath "/ra"
FolderPath "App_Data"
PathType "Folder"
SiteName "Default Web Site"
public class DemoModuleService : ModuleService {
[ModuleServiceMethod]
public ArrayList GetSettings() {
ManagementConfiguration manConfig = this.ManagementUnit.Configuration;
ConfigurationSection appSetSect = manConfig.GetSection("appSettings");
ConfigurationElementCollection settings = appSetSect.GetCollection();
}
}
public void TraceCnfPath() {
ManagementUnit mu = this.ManagementUnit;
Trace.WriteLine("ConfigurationPath.ApplicationPath \"" +
mu.ConfigurationPath.ApplicationPath + "\"");
Trace.WriteLine("FolderPath \"" +
mu.ConfigurationPath.FolderPath + "\"");
Trace.WriteLine("PathType \"" +
mu.ConfigurationPath.PathType + "\"");
Trace.WriteLine("SiteName \"" +
mu.ConfigurationPath.SiteName + "\"");
}