CSL.NetworkExtensions.Framework.Unsafe.MethodInfoExtensions.MethodRedirection.MethodRedirection C# (CSharp) Method

MethodRedirection() public method

public MethodRedirection ( MethodInfo originalMethod, MethodInfo newMethod ) : System
originalMethod System.Reflection.MethodInfo
newMethod System.Reflection.MethodInfo
return System
            public MethodRedirection(MethodInfo originalMethod, MethodInfo newMethod)
            {
                _originalMethod = originalMethod;
                _newMethod = newMethod;
                _callsState = RedirectionHelper.RedirectCalls(_originalMethod, _newMethod);
            }
MethodInfoExtensions.MethodRedirection