public Breakpoint GetBreakpointById(uint breakpointId) { return(RunAsync(() => { IDebugBreakpoint bp; Control.GetBreakpointById(breakpointId, out bp).ThrowIfFailed(); return new Breakpoint(this, (IDebugBreakpoint3)bp); }).Result); }