Soap.InvokeRegistry.TInvokableClassRegistry.GetMethExternalName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetMethExternalName(Info: PTypeInfo; const MethodIntName: string): InvString;

C++

System::UnicodeString __fastcall GetMethExternalName(System::Typinfo::PTypeInfo Info, const System::UnicodeString MethodIntName);

Properties

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

Description

Returns the name of the operation that corresponds to a method on an invokable interface.

GetMethExternalName returns the name of the operation that corresponds to a specified method. This is the name used to define the operation for that method in a WSDL document. The association between the external name and the method name is established by the RegisterExternalMethName method.

Info is the type information pointer for the invokable interface that includes the method.

MethodIntName is the name of the method on that invokable interface.

See Also