Compartir a través de


ManagementConfigurationPath.CreateApplicationConfigurationPath Método

Definición

Crea una nueva ruta de acceso de configuración de la aplicación.

Sobrecargas

CreateApplicationConfigurationPath(String)

Crea una nueva ruta de acceso de configuración de la aplicación.

CreateApplicationConfigurationPath(String, String)

Crea una nueva ruta de acceso de configuración de la aplicación mediante el nombre de sitio web especificado.

CreateApplicationConfigurationPath(String)

Crea una nueva ruta de acceso de configuración de la aplicación.

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

Ruta de acceso a la aplicación.

Devoluciones

Un objeto ManagementConfigurationPath.

Ejemplos

En el ejemplo siguiente se crea un nuevo 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");

} 

Se aplica a

CreateApplicationConfigurationPath(String, String)

Crea una nueva ruta de acceso de configuración de la aplicación mediante el nombre de sitio web 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

Nombre del sitio web.

applicationPath
String

Ruta de acceso a la aplicación.

Devoluciones

Un objeto ManagementConfigurationPath.

Ejemplos

En el ejemplo siguiente se crea un nuevo 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");

}

Se aplica a