Mono.Debugger.Event.Activate C# (CSharp) Méthode

Activate() public abstract méthode

public abstract Activate ( Thread target ) : void
target Thread
Résultat void
        public abstract void Activate(Thread target);

Usage Example

Exemple #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