HttpRequestWrapper.CurrentExecutionFilePath Propriedade

Definição

Obtém o caminho virtual da solicitação atual.Gets the virtual path of the current request.

public:
 virtual property System::String ^ CurrentExecutionFilePath { System::String ^ get(); };
public override string CurrentExecutionFilePath { get; }
member this.CurrentExecutionFilePath : string
Public Overrides ReadOnly Property CurrentExecutionFilePath As String

Valor da propriedade

String

O caminho virtual do manipulador de página que está sendo executado no momento.The virtual path of the page handler that is currently executing.

Comentários

A CurrentExecutionFilePath propriedade retorna o caminho do arquivo do manipulador de página em execução no momento.The CurrentExecutionFilePath property returns the file path of the currently executing page handler.

Quando você redireciona uma solicitação usando o HttpServerUtility.Execute método ou o HttpServerUtility.Transfer método, a CurrentExecutionFilePath propriedade retorna o caminho da página para a qual você está redirecionando (a página filho).When you redirect a request using either the HttpServerUtility.Execute method or the HttpServerUtility.Transfer method, the CurrentExecutionFilePath property returns the path of the page that you are redirecting to (the child page).

Aplica-se a