|
ComTL Properties
| SendAsXML |
Sets if the data will be sent as XML stream |
| IncludeHeader |
Sets if XML stream will include header |
| AddCRC32 |
Sets if header in XML stream will include a CRC32 checksum of datagram |
SendAsXML Property
Description Defines if your message data will be sent as XML stream.
Definition
Public Property SendAsXML() as Boolean
Remarks If value of SendAsXML property is true then data will be sent as XML stream. Note that header in this stream will be included if IncludeHeader property is true as well as checksum in the header will be added if value of AddCRC32 property is true
InclideHeader Property
Description Sets if XML stream will include the header
Definition
Public Property InclideHeader as Boolean
Remarks
This property depends on SendAsXML property's value. If its True, the header will be included, else InclideHeader will be ignored.
AddCRC32 Property
Description Sets if header in XML stream will include the CRC32 checksum of datagram
Definition
Public Property AddCRC32 as Boolean
Remarks This property depends on SendAsXML and IncludeHeader properties values. Both properties values SendAsXML and IncludeHeader must be true, else AddCRC32 will be ignored.
|