LANCommander/LANCommander.SDK/PowerShell/PowerShellDebugHandler.cs

12 lines
364 B
C#
Raw Normal View History

2025-09-09 18:39:56 -05:00
using System;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
namespace LANCommander.SDK.PowerShell;
public class PowerShellDebugHandler
{
public Func<System.Management.Automation.PowerShell, Task> OnDebugStart;
public Func<System.Management.Automation.PowerShell, Task> OnDebugBreak;
public Func<LogLevel, string, Task> OnOutput;
}