Mono.Debugger.Event.Activate C# (CSharp) 메소드

Activate() 공개 추상적인 메소드

public abstract Activate ( Thread target ) : void
target Thread
리턴 void
        public abstract void Activate(Thread target);

Usage Example

예제 #1
0
 public override void ActivateEvent(Mono.Debugger.Event ev)
 {
     if (Process.MainThread.IsStopped)
     {
         ev.Activate(Process.MainThread);
     }
     else
     {
         ThrowNotSupported("Breakpoints can't be changed while the process is running.");
     }
 }
All Usage Examples Of Mono.Debugger.Event::Activate