Soap.InvokeRegistry.TInvokableClassRegistry.GetInterfaceInfoFromName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetInterfaceInfoFromName(const UnitName,  IntfName: string; var Info: PTypeInfo; var IID: TGUID);

C++

void __fastcall GetInterfaceInfoFromName(const System::UnicodeString UnitName, const System::UnicodeString IntfName, System::Typinfo::PTypeInfo &Info, GUID &IID);

Properties

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

Description

Returns information about a registered invokable interface given its name.

GetInterfaceInfoFromName looks up a registered interface given its name and the name of the unit in which it is declared.

UnitName is the name of the unit that contains the interface definition.

IntfName is the name of the interface.

Info returns the type information that is compiled with the specified interface.

IID returns the globally unique identifier for the specified interface.

See Also