Ancestry.QueryProcessor.Compile.ReflectionUtility.GetMethodExt C# (CSharp) Method

GetMethodExt() public static method

Search for a method by name and parameter types. Unlike GetMethod(), does 'loose' matching on generic parameter types, and searches base interfaces.
public static GetMethodExt ( this thisType, string name ) : MethodInfo
thisType this
name string
return System.Reflection.MethodInfo
        public static MethodInfo GetMethodExt(this System.Type thisType, string name, params System.Type[] parameterTypes)
        {
            return GetMethodExt(thisType, name, BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.FlattenHierarchy, parameterTypes);
        }

Same methods

ReflectionUtility::GetMethodExt ( this thisType, string name, BindingFlags bindingFlags ) : MethodInfo
ReflectionUtility::GetMethodExt ( MethodInfo &matchingMethod, System type, string name, BindingFlags bindingFlags ) : void