internal void OnMethodExit(MethodExitEventArgs e) { var t = MethodExit; if (t != null) { t(this, e); } }
private void HandleMethodExit(object sender, MethodExitEventArgs e) { if (e.SuspendPolicy == SuspendPolicy.All) Interlocked.Increment(ref _suspended); throw new NotImplementedException(); }
internal void OnMethodExit(MethodExitEventArgs e) { var t = MethodExit; if (t != null) t(this, e); }