public void AddBreakpointError(AD7BreakpointErrorEvent breakpointError) { this._breakpointErrors.Add(breakpointError); }
private void OnBreakpointBindFailure(object sender, BreakpointBindingEventArgs e) { var pendingBreakpoint = _breakpointManager.GetPendingBreakpoint(e.Breakpoint); var breakpointErrorEvent = new AD7BreakpointErrorEvent(pendingBreakpoint, this); pendingBreakpoint.AddBreakpointError(breakpointErrorEvent); Send(breakpointErrorEvent, AD7BreakpointErrorEvent.IID, null); }
public void AddBreakpointError(AD7BreakpointErrorEvent breakpointError) { _breakpointErrors.Add(breakpointError); }