Soap.InvokeRegistry.TRemotableTypeRegistry.GetInternalPropName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetInternalPropName(Info: PTypeInfo; const ExternalName: InvString): string;

C++

System::UnicodeString __fastcall GetInternalPropName(System::Typinfo::PTypeInfo Info, const System::UnicodeString ExternalName);

Properties

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

Description

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

Use GetInternalPropName to obtain the name of the property on a registered remotable class that corresponds to a specified XML element. 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.

ExternalName is the name of an XML element that is part of a complex type defined in an XML schema. The remotable class identified by Info must represent the complex type that includes ExternalName.

See Also