Class.getMethods

Returns all methods declared on this class, and non-private methods in classes that it inherits from. This is restricted to classes for which reflective information is present.

Methods that are declared by a base class and are overriden by another class appear in the array for every class that delcares them.

  1. const(Method)[] getMethods()
    class Class
    override const
    const(Method)[]
    getMethods
    ()
  2. const(Method)[] getMethods(string name)

Return Value

Type: const(Method)[]

All methods that are available to this class.

See Also

getDeclaringType

Meta