Compartir vía


HttpHandlerAction.Path Propiedad

Definición

Obtiene o establece la ruta de HttpHandlerAction acceso.

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)]
public string Path { get; set; }
[<System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)>]
member this.Path : string with get, set
Public Property Path As String

Valor de propiedad

Ruta de acceso de dirección HttpHandlerAction URL.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo acceder a la Path propiedad .

// Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom";
' Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom"

Comentarios

La Path propiedad puede contener una sola dirección URL o una cadena comodín.

Se aplica a