mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Allow default connection URI as string
This commit is contained in:
@@ -31,7 +31,7 @@ public class NetDebuggerClient : IDebuggerClient, IDisposable
|
|||||||
public event Action<string> DispatcherStep;
|
public event Action<string> DispatcherStep;
|
||||||
public event Action<InterpreterCommand> InterpreterStateChanged;
|
public event Action<InterpreterCommand> InterpreterStateChanged;
|
||||||
|
|
||||||
public NetDebuggerClient(string connectionUri) : this(new Uri(connectionUri))
|
public NetDebuggerClient(string connectionUri) : this(connectionUri is null ? null : new Uri(connectionUri))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user