Data.DBXTransport.TTransportFilterFactory.RegisterFilter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure RegisterFilter(const FilterId: string; const FilterClass: TObjectClass); overload; static;
class procedure RegisterFilter(const FilterClass: TObjectClass); overload; static;

C++

static void __fastcall RegisterFilter(const System::UnicodeString FilterId, const Data::Dbxplatform::TObjectClass FilterClass)/* overload */;
static void __fastcall RegisterFilter(const Data::Dbxplatform::TObjectClass FilterClass)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXTransport.pas
Data.DBXTransport.hpp
Data.DBXTransport TTransportFilterFactory

Description

Registers the given filter class with the transport filter factory.

The RegisterFilter method registers the filter class given through the parameters with the factory. RegisterFilter has two overloads and can be used either with a parameter that represents the filter class type, or with two parameters representing the filter ID and the filter metaclass.

See Also