using Microsoft.Iris.Debug.Data; using System; namespace Microsoft.Iris.Debug; public interface IDebuggerState { void Start(); InterpreterCommand DebuggerCommand { get; set; } } public interface IRemoteDebuggerState : IDebuggerState { /// /// The URI the client is connected to. /// public Uri ConnectionUri { get; } /// /// Fired when a connection is established. /// public event Action Connected; }