Soap.InvokeRegistry.TInvokableClassRegistry.GetMethInternalName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetMethInternalName(Info: PTypeInfo; const MethodExtName: InvString): string;

C++

System::UnicodeString __fastcall GetMethInternalName(System::Typinfo::PTypeInfo Info, const System::UnicodeString MethodExtName);

Properties

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

Description

Returns the name of the method that corresponds to an operation in a WSDL document.

GetMethInternalName returns the name of a method on a registered invokable interface that corresponds to a specified operation. The operation name comes from a WSDL document that describes the invokable interface and its methods. The association between the operation 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.

MethodExtName is the name of the operation for which you want the corresponding method name.

See Also