Compartilhar via


Interface ICorDebugRemote

Fornece a capacidade de iniciar ou anexar um depurador gerenciado a um processo remoto de destino.

Syntax

interface ICorDebugRemote : IUnknown
{
    HRESULT CreateProcessEx
      (
      [in] ICorDebugRemoteTarget *     pRemoteTarget,
      [in] LPCWSTR                     lpApplicationName,
      [in] LPWSTR                      lpCommandLine,
      [in] LPSECURITY_ATTRIBUTES       lpProcessAttributes,
      [in] LPSECURITY_ATTRIBUTES       lpThreadAttributes,
      [in] BOOL                        bInheritHandles,
      [in] DWORD                       dwCreationFlags,
      [in] PVOID                       lpEnvironment,
      [in] LPCWSTR                     lpCurrentDirectory,
      [in] LPSTARTUPINFOW              lpStartupInfo,
      [in] LPPROCESS_INFORMATION       lpProcessInformation,
      [in] CorDebugCreateProcessFlags  debuggingFlags,
      [out] ICorDebugProcess **        ppProcess
      );

    HRESULT DebugActiveProcessEx
      (
      [in] ICorDebugRemoteTarget *   pRemoteTarget,
      [in] DWORD                     dwProcessId,
      [in] BOOL                      fWin32Attach,
      [out] ICorDebugProcess **      ppProcess
      );
};

Métodos

Método Descrição
Método ICorDebugRemote::CreateProcessEx Cria um processo em um computador remoto para a depuração gerenciada.
Método ICorDebugRemote::DebugActiveProcessEx Inicia um processo em um computador remoto sob o depurador.

Comentários

Atualmente, essa funcionalidade é aceita somente para depuração de um destino de aplicativo baseado em Silverlight executando em um computador Macintosh remoto.

Requisitos

Plataformas: confira Requisitos do sistema.

Cabeçalho: CorDebug.idl, CorDebug.h

Biblioteca: CorGuids.lib

Versões do .NET Framework: 4.5, 4, 3.5 SP1

Confira também