Click or drag to resize

ClassDBClassGetMethodList Method

Returns an array with all the methods of class or its ancestry if no_inheritance is false. Every element of the array is a Dictionary with the following keys: args, default_args, flags, id, name, return: (class_name, hint, hint_string, name, type, usage).

Note: In exported release builds the debug info is not available, so the returned dictionaries will contain only method names.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public static Array ClassGetMethodList(
	string class,
	bool noInheritance = false
)

Parameters

class
Type: SystemString

[Missing <param name="class"/> documentation for "M:Godot.ClassDB.ClassGetMethodList(System.String,System.Boolean)"]

noInheritance (Optional)
Type: SystemBoolean

[Missing <param name="noInheritance"/> documentation for "M:Godot.ClassDB.ClassGetMethodList(System.String,System.Boolean)"]

Return Value

Type: Array

[Missing <returns> documentation for "M:Godot.ClassDB.ClassGetMethodList(System.String,System.Boolean)"]

See Also