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