다음을 통해 공유


ManagementConfigurationPath.CreateApplicationConfigurationPath 메서드

정의

새 애플리케이션 구성 경로를 만듭니다.

오버로드

CreateApplicationConfigurationPath(String)

새 애플리케이션 구성 경로를 만듭니다.

CreateApplicationConfigurationPath(String, String)

지정된 웹 사이트 이름을 사용하여 새 애플리케이션 구성 경로를 만듭니다.

CreateApplicationConfigurationPath(String)

새 애플리케이션 구성 경로를 만듭니다.

public:
 static Microsoft::Web::Management::Server::ManagementConfigurationPath ^ CreateApplicationConfigurationPath(System::String ^ applicationPath);
public static Microsoft.Web.Management.Server.ManagementConfigurationPath CreateApplicationConfigurationPath (string applicationPath);
static member CreateApplicationConfigurationPath : string -> Microsoft.Web.Management.Server.ManagementConfigurationPath
Public Shared Function CreateApplicationConfigurationPath (applicationPath As String) As ManagementConfigurationPath

매개 변수

applicationPath
String

애플리케이션의 경로입니다.

반환

ManagementConfigurationPath 개체입니다.

예제

다음 예제에서는 새 ManagementConfigurationPath 개체를 만듭니다.

void doStrtConfgMgntApp(IServiceProvider sp, string appPath) {

    Connection con = (Connection)sp.GetService(typeof(Connection));

    ManagementConfigurationPath newConfigurationPath = ManagementConfigurationPath
        .CreateApplicationConfigurationPath(appPath);

    bool b = con.StartConfigurationManagement(newConfigurationPath);
    if (b != true)
        ShowMessage("Failure: \n CreateApplicationConfigurationPath for App Path" 
            + appPath, "Error");

} 

적용 대상

CreateApplicationConfigurationPath(String, String)

지정된 웹 사이트 이름을 사용하여 새 애플리케이션 구성 경로를 만듭니다.

public:
 static Microsoft::Web::Management::Server::ManagementConfigurationPath ^ CreateApplicationConfigurationPath(System::String ^ siteName, System::String ^ applicationPath);
public static Microsoft.Web.Management.Server.ManagementConfigurationPath CreateApplicationConfigurationPath (string siteName, string applicationPath);
static member CreateApplicationConfigurationPath : string * string -> Microsoft.Web.Management.Server.ManagementConfigurationPath
Public Shared Function CreateApplicationConfigurationPath (siteName As String, applicationPath As String) As ManagementConfigurationPath

매개 변수

siteName
String

웹 사이트 이름입니다.

applicationPath
String

애플리케이션의 경로입니다.

반환

ManagementConfigurationPath 개체입니다.

예제

다음 예제에서는 새 ManagementConfigurationPath 개체를 만듭니다.

void doStrtConfgMgntApp(IServiceProvider sp, string siteNm, string appPath) {

    Connection con = (Connection)sp.GetService(typeof(Connection));

    ManagementConfigurationPath newConfigurationPath = ManagementConfigurationPath
        .CreateApplicationConfigurationPath(siteNm, appPath);

    bool b = con.StartConfigurationManagement(newConfigurationPath);
    if (b != true)
        ShowMessage("Failure: \n CreateApplicationConfigurationPath for site "
            + siteNm + "  App Path" + appPath, "Error");

}

적용 대상