Soap.InvokeRegistry.TInvokableClassRegistry.GetInterfaceExternalName

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

function  GetInterfaceExternalName(Info: PTypeInfo; const Namespace: string; const InternalIntfName: string): InvString; overload;
function  GetInterfaceExternalName(Info: PTypeInfo; const Namespace: string): InvString; overload;
function  GetInterfaceExternalName(Info: PTypeInfo): InvString; overload;

C++

System::UnicodeString __fastcall GetInterfaceExternalName(System::Typinfo::PTypeInfo Info, const System::UnicodeString Namespace, const System::UnicodeString InternalIntfName)/* overload */;
System::UnicodeString __fastcall GetInterfaceExternalName(System::Typinfo::PTypeInfo Info, const System::UnicodeString Namespace)/* overload */;
System::UnicodeString __fastcall GetInterfaceExternalName(System::Typinfo::PTypeInfo Info)/* overload */;

Propriétés

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

Description

Renvoie le nom du type de port qui correspond à une interface invocable.

GetInterfaceExternalName renvoie le nom du type de port qui correspond à l'interface invocable spécifiée. Il s'agit du nom donné au type de port correspondant dans un document WSDL. L'association entre le nom externe et le nom de l'interface est établie par la méthode RegisterInterface.

Info est le pointeur d'information de type pour l'interface invocable.

Namespace est l'espace de nommage affecté à l'interface invocable recensée par un appel à la méthode RegisterInterface. Si l'interface a été recensée en utilisant l'espace de nommage généré automatiquement, ce paramètre peut être ignoré ou vous pouvez fournir une chaîne vide.

InternalIntfName est le nom de l'interface invocable.

Voir aussi