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

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

private SetLastCalledMethod ( String newMethName, MethodBase newMB ) : void
newMethName String
newMB System.Reflection.MethodBase
Результат void
        internal void SetLastCalledMethod(String newMethName, MethodBase newMB)
        {
            LastCalledMethodClass lastMeth = new LastCalledMethodClass();           
            lastMeth.methodName = newMethName;
            lastMeth.MB = newMB;

            _lastMethodCalled = lastMeth;
        } // SetLastCalledMethod