次の方法で共有


Connection.ConfigurationPath プロパティ

定義

現在の管理単位の構成パスを取得します。

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

プロパティ値

ManagementConfigurationPath オブジェクト。

public LinkedList<string> ConfigurationPath(IServiceProvider sp) {

    Connection con = (Connection)sp.GetService(typeof(Connection));
    LinkedList<string> llp = new LinkedList<string>();
    ManagementConfigurationPath mcp = con.ConfigurationPath;

    llp.AddLast("ApplicationPath: " + mcp.ApplicationPath);
    llp.AddLast("FolderPath: " + mcp.FolderPath);

    llp.AddLast("GetEffectiveConfigurationPath Application: " +
        mcp.GetEffectiveConfigurationPath(ManagementScope.Application));
    llp.AddLast("GetEffectiveConfigurationPath Server: " +
        mcp.GetEffectiveConfigurationPath(ManagementScope.Server));
    llp.AddLast("GetEffectiveConfigurationPath Site: " +
        mcp.GetEffectiveConfigurationPath(ManagementScope.Site));
    llp.AddLast("PathType: " + mcp.PathType.ToString());
    llp.AddLast("SiteName: " + mcp.SiteName);
    return llp;

}

注釈

このプロパティは、現在の管理単位の構成パスを取得します。 空の構成パスは、現在の管理単位に関連付けられているルート構成パスを示します。

注意

構成パスにアプリケーションまたはサイトからアクセスすると、 Microsoft.Web.Management.Server.ManagementConfigurationPath.ApplicationPath プロパティと Microsoft.Web.Management.Server.ManagementConfigurationPath.FolderPath プロパティは空になります。 サイトの Bin ディレクトリからパスにアクセスすると、プロパティの ApplicationPath 値は "/" になり、プロパティの FolderPath 値は "Bin" になります。 アプリケーションの Bin ディレクトリからパスにアクセスすると、プロパティの ApplicationPath 値は "/" に続けてアプリケーション名 ("/ExampleApp"など) になり、プロパティの FolderPath 値は "Bin" になります。 これは仕様です。

適用対象