AvalonStudio.Debugging.Commands.StopDebuggingCommandDefinition.StopDebuggingCommandDefinition C# (CSharp) Method

StopDebuggingCommandDefinition() public method

public StopDebuggingCommandDefinition ( ) : System
return System
		public StopDebuggingCommandDefinition()
		{
			command = ReactiveCommand.Create();
			command.Subscribe(_ =>
			{
				var manager = IoC.Get<IDebugManager>();

				manager.Stop();
			});
		}
StopDebuggingCommandDefinition