Compartilhar via


ManagementConfigurationPath.CreateApplicationConfigurationPath Método

Definição

Cria um novo caminho de configuração de aplicativo.

Sobrecargas

CreateApplicationConfigurationPath(String)

Cria um novo caminho de configuração de aplicativo.

CreateApplicationConfigurationPath(String, String)

Cria um novo caminho de configuração de aplicativo usando o nome do site especificado.

CreateApplicationConfigurationPath(String)

Cria um novo caminho de configuração de aplicativo.

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

Parâmetros

applicationPath
String

O caminho do aplicativo.

Retornos

Um objeto ManagementConfigurationPath.

Exemplos

O exemplo a seguir cria um novo ManagementConfigurationPath objeto .

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");

} 

Aplica-se a

CreateApplicationConfigurationPath(String, String)

Cria um novo caminho de configuração de aplicativo usando o nome do site especificado.

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

Parâmetros

siteName
String

O nome do site.

applicationPath
String

O caminho do aplicativo.

Retornos

Um objeto ManagementConfigurationPath.

Exemplos

O exemplo a seguir cria um novo ManagementConfigurationPath objeto .

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");

}

Aplica-se a