Soap.InvokeRegistry.TInvokableClassRegistry.GetParamExternalName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetParamExternalName(Info: PTypeInfo; const MethodName, InternalParamName: string): InvString;

C++

System::UnicodeString __fastcall GetParamExternalName(System::Typinfo::PTypeInfo Info, const System::UnicodeString MethodName, const System::UnicodeString InternalParamName);

Properties

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

Description

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

GetParamExternalName returns the name of the part that corresponds to a specified method parameter. This is the name used to define the part for that parameter in a WSDL document. The association between the external name and the parameter name is established by the RegisterExternalParamName method.

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

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

InternalParamName is the name of the parameter on the method of the invokable interface.

See Also