Compartilhar via


HttpHandlerAction.Path Propriedade

Definição

Obtém ou define o caminho 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 da propriedade

String

O caminho da URL de HttpHandlerAction.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a Path propriedade.

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

Comentários

A Path propriedade pode conter uma única URL ou uma cadeia de caracteres curinga.

Aplica-se a