Compartilhar via


Processo Host (vshost.exe)

O processo de hospedagem é um recurso do Visual Studio 2010 , que melhora o desempenho de depuração habilita a depuração de confiança parcial e permite a avaliação de expressão do design time. The hosting process files contain vshost in the file name and are placed in the output folder of your project. For more information, see Depuração e o processo de hospedagem.

ObservaçãoObservação

Arquivos do processo de hospedagem (. vshost.exe) são para uso por Visual Studio e não devem ser executados diretamente ou implantado com o seu aplicativo...

Improved Debugging Performance

The hosting process creates an application domain and associates the debugger with the application. Performing these tasks can introduce a noticeable delay between the time debugging is started and the time the application begins running. The hosting process helps increase performance by creating the application domain and associating the debugger in the background, and saving the application domain and debugger state between runs of the application. Para obter mais informações sobre domínios de aplicativo, consulte Application Domains.

Partial Trust Debugging

An application can be specified as a partial trust application in the Security page of the Project Designer. Debugging a partial trust application requires special initialization of the application domain. This initialization is handled by the hosting process.

Design-Time Expression Evaluation

Design-time expression evaluation enables you to test code from the Immediate window without having to run the application. The hosting process executes this code during design time expression evaluation. For more information, see Janela Immediate.

Consulte também

Referência

Janela Immediate

Conceitos

Depuração e o processo de hospedagem

Como: Desativar o processo de hospedagem

Como: Desativar o processo de hospedagem

Outros recursos

Application Domains