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

GetMethodBaseFromMethodMessage() private method

private GetMethodBaseFromMethodMessage ( IMethodMessage msg ) : MethodBase
msg IMethodMessage
return System.Reflection.MethodBase
        public static MethodBase GetMethodBaseFromMethodMessage(IMethodMessage msg)
        {
            MethodBase mb = InternalGetMethodBaseFromMethodMessage(msg);
            return mb;
        }
RemotingServices