Soap.InvokeRegistry.TRemotableXS.XSToNative

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure XSToNative(const Data: InvString); virtual; abstract;

C++

virtual void __fastcall XSToNative(const System::UnicodeString Data) = 0 ;

Properties

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

Description

Assigns the value of a string to the TRemotableXS instance.

Override XSToNative when implementing a TRemotableXS descendant that represents a non-native scalar type. NativeToXS interprets a string that represents the value of the TRemotableXS instance and uses it to make any necessary changes so that the TRemotableXS object reflects that value. It reverses the transformation that the NativeToXS method performs.

Data is a string that represents the value of the TRemotableXS instance.

See Also