Пример #1
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugStackFrame(FrameId frameId, Location location, DebugThread thread)
     : base(frameId, location, thread)
 {
 }
Пример #2
0
        /// <summary>
        /// Send an event from the given sender.
        /// </summary>
        public void Send(DebugThread sender, BaseEvent @event)
        {
            var program = sender.Program;

            Send(program.Process, program, sender, @event);
        }
 /// <summary>
 /// Send the given event to VS.
 /// </summary>
 internal void Send(DebugThread thread, BreakpointEvent @event)
 {
     eventCallback.Send(thread, @event);
 }
Пример #4
0
 /// <summary>
 /// Send the given event to VS.
 /// </summary>
 internal void Send(DebugThread thread, ExceptionEvent @event)
 {
     eventCallback.Send(thread, @event);
 }
Пример #5
0
 /// <summary>
 /// Send the given event to VS.
 /// </summary>
 internal void Send(DebugThread thread, ExceptionEvent @event)
 {
     eventCallback.Send(thread, @event);
 }
Пример #6
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugStackFrame(FrameId frameId, Location location, DebugThread thread)
     : base(frameId, location, thread)
 {
 }
Пример #7
0
 /// <summary>
 /// Send an event from the given sender.
 /// </summary>
 public void Send(DebugThread sender, BaseEvent @event)
 {
     var program = sender.Program;
     Send(program.Process, program, sender, @event);
 }
Пример #8
0
 /// <summary>
 /// Send the given event to VS.
 /// </summary>
 internal void Send(DebugThread thread, BreakpointEvent @event)
 {
     eventCallback.Send(thread, @event);
 }