Implementation of script debugger component with RPC via SignalR
This commit is contained in:
parent
f242f66813
commit
17fa802c19
19 changed files with 516 additions and 62 deletions
12
LANCommander.SDK/PowerShell/Rpc/IScriptDebuggerClient.cs
Normal file
12
LANCommander.SDK/PowerShell/Rpc/IScriptDebuggerClient.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace LANCommander.SDK.PowerShell.Rpc;
|
||||
|
||||
public interface IScriptDebuggerClient
|
||||
{
|
||||
Task Start(IScriptDebugContext context);
|
||||
Task End(IScriptDebugContext context);
|
||||
Task Break(IScriptDebugContext context);
|
||||
Task Output(IScriptDebugContext context, LogLevel level, string message);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue