slinject.Debugger.Wrappers.DebugModule.GetMethodByToken C# (CSharp) Method

GetMethodByToken() private method

private GetMethodByToken ( int methodDefToken ) : DebugFunction
methodDefToken int
return DebugFunction
        private DebugFunction GetMethodByToken(int methodDefToken)
        {
            ICorDebugFunction ppFunction;
            _module.GetFunctionFromToken((uint)methodDefToken, out ppFunction);

            return new DebugFunction(ppFunction);
        }