Interface ILemonEdgeDebugger
Debugger helper, providing methods to attach a process to a current debugging session.
Namespace: LemonEdge.DesktopTools.Debugger.Interfaces
Assembly: LemonEdge.DesktopTools.dll
Syntax
public interface ILemonEdgeDebugger
Methods
AttachToCurrentDebugSession(int)
Attaches the debugger to the current debugging session based on the specified process ID.
Declaration
void AttachToCurrentDebugSession(int processId)
Parameters
Type | Name | Description |
---|---|---|
int | processId | The ID of the process to which the debugger should attach. |
AttachToCurrentDebugSessionAsync(string)
Attaches the debugger to the current debugging session based on the specified process name.
Declaration
Task AttachToCurrentDebugSessionAsync(string processName)
Parameters
Type | Name | Description |
---|---|---|
string | processName | The name of the process to which the debugger should attach. |
Returns
Type | Description |
---|---|
Task |