Datasnap.DSCommonServer.DSAdmin.FindClasses

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Datasnap.DSCommonServer.pas
Datasnap.DSCommonServer.hpp
Unit: Datasnap.DSCommonServer
Parent: DSAdmin

Delphi

function FindClasses(const PackageName: string; const ClassPattern: string): TDBXReader;

C++

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

Description

Find all classes for given package with class name pattern.

Find all classes for a given package with the given class name pattern.

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

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


See Also