Soap.InvokeRegistry.TInvokableClassRegistry.HasRegInterfaceImpl

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  HasRegInterfaceImpl(Index: Integer): Boolean;

C++

bool __fastcall HasRegInterfaceImpl(int Index);

Properties

Type Visibility Source Unit Parent
function public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TInvokableClassRegistry

Description

Indicates whether there is a registered implementation class for an invokable interface.

Typically, applications do not need to call HasRegInterfaceImpl. This method is used internally to determine whether an implementation class has been registered for an invokable interface. The RegisterInvokableClass method registers these implementation classes.

Index identifies the invokable interface for which an implementation class is sought. This index is the same as the index used in the GetRegInterfaceEntry method, and reflects the order in which interfaces are registered.

HasRegInterfaceImpl returns true if there is a registered implementation class for the specified interface, false otherwise.

See Also