IKVM.Reflection.Module.GetMethod C# (CSharp) Method

GetMethod() public method

public GetMethod ( string name, BindingFlags bindingAttr, IKVM.Reflection.Binder binder, CallingConventions callConv, Type types, IKVM.Reflection.ParameterModifier modifiers ) : IKVM.Reflection.MethodInfo
name string
bindingAttr BindingFlags
binder IKVM.Reflection.Binder
callConv CallingConventions
types Type
modifiers IKVM.Reflection.ParameterModifier
return IKVM.Reflection.MethodInfo
        public MethodInfo GetMethod(string name, BindingFlags bindingAttr, Binder binder, CallingConventions callConv, Type[] types, ParameterModifier[] modifiers)
        {
            return IsResource() ? null : GetModuleType().GetMethod(name, bindingAttr | BindingFlags.DeclaredOnly, binder, callConv, types, modifiers);
        }

Same methods

Module::GetMethod ( string name ) : IKVM.Reflection.MethodInfo
Module::GetMethod ( string name, Type types ) : IKVM.Reflection.MethodInfo