LANCommander/LANCommander.SDK/PowerShell/PowerShellDebugHandler.cs
2025-09-09 18:39:56 -05:00

12 lines
No EOL
364 B
C#

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;
}