AvalonStudio.Models.Tools.Debuggers.Local.LocalDebugAdaptor.StartAsync C# (CSharp) Method

StartAsync() public method

public StartAsync ( IToolChain toolchain, IConsole console, IProject project ) : Task
toolchain IToolChain
console IConsole
project IProject
return Task
		public override async Task<bool> StartAsync(IToolChain toolchain, IConsole console, IProject project)
		{
			var result = await base.StartAsync(toolchain, console, project);

			if (result)
			{
                asyncModeEnabled = (await new GDBSetCommand("mi-async", "on").Execute(this)).Response == ResponseCode.Done;
                await new SetCommand("new-console", "on").Execute(this);
			}

			return result;
		}
	}
LocalDebugAdaptor