Soap.OPToSOAPDomConv.TSOAPDomConv.OnMemberDataNotReceived
Delphi
property OnMemberDataNotReceived: TMemberDataNotReceivedEvent read FOnMemberDataNotReceived write FOnMemberDataNotReceived;
C++
__property TMemberDataNotReceivedEvent OnMemberDataNotReceived = {read=FOnMemberDataNotReceived, write=FOnMemberDataNotReceived};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | published | Soap.OPToSOAPDomConv.pas Soap.OPToSOAPDomConv.hpp |
Soap.OPToSOAPDomConv | TSOAPDomConv |
Description
Occurs when converting a SOAP representation to a remotable object and an expected class member was not found.
Write an OnMemberDataNotReceived to detect cases where the converter does not receive the information it excepts When a method on an invokable interface requires the user to send or receive OnMemberDataNotReceived, these for deserializing a remotable type (a TRemotable descendant). This event is especially useful during debugging. Typically, after detecting a problem using OnMemberDataNotReceived, the problem is then handled by changing the code that declares or registers the remotable type.