CSL.NetworkExtensions.Framework.Unsafe.MethodInfoExtensions.RedirectTo C# (CSharp) Метод

RedirectTo() публичный статический Метод

public static RedirectTo ( this originalMethod, MethodInfo newMethod ) : IDisposable
originalMethod this
newMethod System.Reflection.MethodInfo
Результат IDisposable
        public static IDisposable RedirectTo(this MethodInfo originalMethod, MethodInfo newMethod)
        {
            return new MethodRedirection(originalMethod, newMethod);
        }
    }
MethodInfoExtensions