AxInternalBase::parmMethods Method [AX 2012]

Returns a map that contains methods with parm as the prefix in the method name for a class.

Syntax

client server public static Map parmMethods(ClassId classId, [boolean thisClassOnly])

Run On

ClientOrServer

Parameters

  • thisClassOnly
    Type: boolean
    A Boolean value that specifies whether to return methods implemented by this class only, excluding all inherited methods; optional. The default value is false.

Return Value

Type: Map Class
A map that has the names of methods that have parm in the name. The method name is the key and the class ID is the value.

Remarks

The parmMethods method is used by the Axd-framework to find the methods in a class that are interface methods that can be used for XML documents.

Examples

The following example shows how to get the parm methods for the AxSalesTable class.

Map map; 

map = AxInternalBase::parmMethods(classnum(AxSalesTable));

See Also

Reference

AxInternalBase Class