BananaHook.ReflectionDetourNotifier.OnDetourCalled C# (CSharp) Méthode

OnDetourCalled() protected méthode

protected OnDetourCalled ( DetourCallbackEventArgs e ) : void
e DetourCallbackEventArgs
Résultat void
        protected virtual void OnDetourCalled(DetourCallbackEventArgs e)
        {
            EventHandler<DetourCallbackEventArgs> detourCalled = DetourCalled;
            if (detourCalled != null)
            {
                detourCalled(this, e);
            }
        }