Soap.OPToSOAPDomConv.TMemberDataNotReceivedEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMemberDataNotReceivedEvent = procedure(const ClassName: string; const Member: string) of object;

C++

typedef void __fastcall (__closure *TMemberDataNotReceivedEvent)(const System::UnicodeString ClassName, const System::UnicodeString Member);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Soap.OPToSOAPDomConv.pas
Soap.OPToSOAPDomConv.hpp
Soap.OPToSOAPDomConv Soap.OPToSOAPDomConv

Description

TMemberDataNotReceivedEvent is the type of the OnMemberDataNotReceived event of TSOAPDomConv.

TMemberDataNotReceivedEvent is the type of the OnMemberDataNotReceived event handler, which is called when a converter is constructing a remotable object from its SOAP representation and fails to find a published class member.

ClassName is the name of the remotable object's class.

Member is the name of the member that was not found in the SOAP representation.

See Also