ManagementConfigurationPath.CreateApplicationConfigurationPath 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
새 애플리케이션 구성 경로를 만듭니다.
오버로드
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");
}