Share via


HttpHandlerAction.Path Propiedad

Definición

Obtiene o establece la ruta de acceso de HttpHandlerAction.

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 URL de HttpHandlerAction.

Atributos

Ejemplos

El siguiente ejemplo de código muestra cómo obtener acceso a la propiedad Path.

// 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 con caracteres comodín.

Se aplica a