mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
23 lines
497 B
C#
23 lines
497 B
C#
using Microsoft.Iris.Debug.Data;
|
|
using System;
|
|
|
|
namespace Microsoft.Iris.Debug;
|
|
|
|
public interface IDebuggerState
|
|
{
|
|
InterpreterCommand DebuggerCommand { get; set; }
|
|
}
|
|
|
|
public interface IRemoteDebuggerState : IDebuggerState
|
|
{
|
|
/// <summary>
|
|
/// The URI the client is connected to.
|
|
/// </summary>
|
|
public Uri ConnectionUri { get; }
|
|
|
|
/// <summary>
|
|
/// Fired when a connection is established.
|
|
/// </summary>
|
|
public event Action<IDebuggerState, object> Connected;
|
|
}
|