System.Runtime.Remoting.RemotingServices.IsMethodOverloaded C# (CSharp) Method

IsMethodOverloaded() private method

private IsMethodOverloaded ( IMethodMessage msg ) : bool
msg IMethodMessage
return bool
        public static bool IsMethodOverloaded(IMethodMessage msg)
        {
            RemotingMethodCachedData cache = 
                InternalRemotingServices.GetReflectionCachedData(msg.MethodBase);

            return cache.IsOverloaded();            
        } // IsMethodOverloaded
        
RemotingServices