Remotion.Linq.SqlBackend.SqlPreparation.MethodCallTransformers.MethodCallTransformerUtility.GetStaticMethod C# (CSharp) Method

GetStaticMethod() public static method

public static GetStaticMethod ( Type type, string methodName ) : MethodInfo
type System.Type
methodName string
return System.Reflection.MethodInfo
    public static MethodInfo GetStaticMethod (Type type, string methodName, params Type[] argumentTypes)
    {
      ArgumentUtility.CheckNotNull ("type", type);
      ArgumentUtility.CheckNotNull ("methodName", methodName);

      return type.GetMethod (
          methodName,
          BindingFlags.Public | BindingFlags.Static,
          null,
          argumentTypes,
          null);
    }