Datasnap.DSCommonServer.DSAdmin.FindMethods

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FindMethods(const PackageName: string; const ClassPattern: string; const MethodPattern: string): TDBXReader;

C++

Data::Dbxcommon::TDBXReader* __fastcall FindMethods(const System::UnicodeString PackageName, const System::UnicodeString ClassPattern, const System::UnicodeString MethodPattern);

Properties

Type Visibility Source Unit Parent
function public
Datasnap.DSCommonServer.pas
Datasnap.DSCommonServer.hpp
Datasnap.DSCommonServer DSAdmin

Description

Find public methods for class.

FindMethods finds public methods for a class using a pattern.

The parameter PackageName is the name of the package to search. Set to null to search all packages. It may be ignored on some platforms.

If the ClassPattern parameter is not null, all classes that have this string in their name are selected.

If the parameter MethodPattern is not null, all methods that have this string in their name are selected.

This method returns a collection of DSMethodEntity as a TDBXReader.

See Also