Soap.InvokeRegistry.TInvokableClassRegistry.GetReturnParamNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetReturnParamNames(const IntfInfo: PTypeInfo): InvString;

C++

System::UnicodeString __fastcall GetReturnParamNames(const System::Typinfo::PTypeInfo IntfInfo);

Properties

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

Description

Returns the list of parameter names that map to return values of interface methods.

GetReturnParamNames returns the list of parameter names that have been registered as mapping to return values of methods on a specified interface. Any out messages in a port type with these names are identified as the return value of a method on the corresponding interface. If the application does not explicitly register output parameter names by a call to RegisterReturnParamNames, GetReturnParamNames returns the default list, 'Result;Return'.

IntfInfo is the type information pointer for the invokable interface for which you want the registered parameter names.

GetReturnParamNames returns the list of parameter names as a semicolon delimited list.

See Also