System.Runtime.Remoting.Metadata.RemotingTypeCachedData.GetLastCalledMethod C# (CSharp) Метод

GetLastCalledMethod() приватный Метод

private GetLastCalledMethod ( String newMeth ) : MethodBase
newMeth String
Результат System.Reflection.MethodBase
        internal MethodBase GetLastCalledMethod(String newMeth)
        {
            LastCalledMethodClass lastMeth = _lastMethodCalled;                        
            if (lastMeth == null)
                return null;

            String methodName = lastMeth.methodName;
            MethodBase mbToReturn = lastMeth.MB;

            if (mbToReturn==null || methodName==null)
                return null;

            if (methodName.Equals(newMeth))
                return mbToReturn;

            return null;
        } // GetLastCalledMethod