다음을 통해 공유


ManagementConfigurationPath.CreateFileConfigurationPath 메서드

정의

새 파일 구성 경로를 만듭니다.

오버로드

CreateFileConfigurationPath(String, String)

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

CreateFileConfigurationPath(String, String, String)

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

CreateFileConfigurationPath(String, String)

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

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

매개 변수

applicationPath
String

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

filePath
String

파일 경로입니다.

반환

ManagementConfigurationPath 개체입니다.

설명

자세한 내용은 오버로드 예제를 CreateFileConfigurationPath(String, String, String) 참조하세요.

적용 대상

CreateFileConfigurationPath(String, String, String)

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

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

매개 변수

siteName
String

웹 사이트 이름입니다.

applicationPath
String

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

filePath
String

파일 경로입니다.

반환

ManagementConfigurationPath 개체입니다.

예제

다음 예제에서는 새 파일 구성 경로를 만들고 구성 관리를 시작합니다.


void testStrtConfgMgntFile(IServiceProvider sp) {
    doStrtConfgMgntFile(sp, "rws", "/rAp2", "Bin");
}

bool doStrtConfgMgntFile(IServiceProvider sp, string siteNm, string appPath, string filePath) {

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

    ManagementConfigurationPath newConfigurationPath = ManagementConfigurationPath
        .CreateFileConfigurationPath(siteNm, appPath, filePath);

    bool b = con.StartConfigurationManagement(newConfigurationPath);
    if (b != true)
        ShowMessage("Failure: \n CreateFileConfigurationPath for site " 
            + siteNm, "Error");
    return b;
}

적용 대상