Soap.InvokeRegistry.TRemotableTypeRegistry.GetExternalPropName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetExternalPropName(Info: PTypeInfo; InternalName: string): InvString;

C++

System::UnicodeString __fastcall GetExternalPropName(System::Typinfo::PTypeInfo Info, System::UnicodeString InternalName);

Properties

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

Description

Returns the name of the XML element that corresponds to a property of a registered remotable class.

Use GetExternalPropName to obtain the name of the XML element that was registered as the XML schema analog of a property on a registered remotable class. The association between the element and the property must be previously registered by the RegisterExternalPropName method.

Info points to the type information of the remotable class that has the property.

InternalName is the name of the property from which you want to obtain the corresponding XML element name.

See Also