Reflection .NET API
Attachmate.Reflection.Emulation.OpenSystems Assembly / Attachmate.Reflection.Emulation.OpenSystems Namespace / IFileTransfer Interface / XmodemExtension Property


In This Topic
XmodemExtension Property
In This Topic
Returns or specifies what type of Xmodem error checking is performed, as well as the Xmodem packet size.
Syntax
'Declaration
 
Property XmodemExtension As XModemErrorCheckingOption
 
'Usage
 
Dim instance As IFileTransfer
Dim value As XModemErrorCheckingOption
 
instance.XmodemExtension = value
 
value = instance.XmodemExtension

Property Value

The default value is XModemErrorCheckingOption.XmodemCRC. XModemErrorCheckingOption.None Specifies 1-byte checksum and 128-byte packets. XModemErrorCheckingOption.XmodemCRC Specifies 2-byte CRC and 128-byte packets. XModemErrorCheckingOption.Xmodem1k Specifies 2-byte CRC and 1024-byte packets.
Remarks
The default value is XModemErrorCheckingOption.XmodemCRC. XModemErrorCheckingOption.None Specifies 1-byte checksum and 128-byte packets. XModemErrorCheckingOption.XmodemCRC Specifies 2-byte CRC and 128-byte packets. XModemErrorCheckingOption.Xmodem1k Specifies 2-byte CRC and 1024-byte packets.
See Also