Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / KermitChecksum Property
In This Topic
    KermitChecksum Property
    In This Topic
    Returns or specifies the level of error checking that's used, as supported by Kermit.
    Syntax
    expression.KermitChecksum As KermitChecksumOption
    where expression is a variable that represents a FileTransfer Object

    Property Value

    A KermitCheckSumOption value.
    Remarks
    Kermit supports three kinds of error checking: single-byte checksum, double-byte checksum, and three-byte CRC. During file transfers, Reflection uses the specified level of error checking, unless the Kermit program at the other end of the transfer does not support that level. In that case, Reflection uses the highest level that the remote system supports. CRC is the highest level of error checking and the most thorough. Single-byte checksum is the lowest level, but is the fastest.

    • Kermit uses single-byte checksum.
    • Kermit uses double-byte checksum.
    • Kermit uses three-byte CRC checksum. (The default.)
    See Also