ICorDebugRemote 接口
提供启动托管调试器或将其附加到远程目标进程的能力。
语法
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
);
};
方法
方法 | 说明 |
---|---|
ICorDebugRemote::CreateProcessEx 方法 | 在远程计算机上创建用于托管调试的进程。 |
ICorDebugRemote::DebugActiveProcessEx 方法 | 在调试程序下的远程计算机上启动进程。 |
备注
目前,此功能仅支持调试远程 Macintosh 计算机上运行的基于 Silverlight 的应用程序目标。
要求
平台:请参阅系统要求。
标头:CorDebug.idl、CorDebug.h
库:CorGuids.lib
.NET framework 版本:4.5、4、3.5 SP1