Xceed .NET Libraries Documentation
Xceed.Compression.Formats Assembly / Xceed.Compression.Formats Namespace / ChecksumType Enumeration


In This Topic
    ChecksumType Enumeration
    In This Topic
    Represents the checksum type that will be used to calculate a stream's checksum.
    Syntax
    'Declaration
     
    Public Enum ChecksumType 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    'Usage
     
    Dim instance As ChecksumType
    Members
    MemberValueDescription
    Adler320The Adler-32 checksum is a 32-bit checksum that is often used to verify the integrity of data. An Adler-32 checksum is almost as reliable as a CRC checksum but can be computed much faster.
    CRC162 
    CRC321Cyclic Redundancy Check. The CRC checksum is a 32-bit checksum that is often used to verify the integrity of data. While slightly more reliable than an Adler-32 checksum, the CRC checksum takes longer to compute.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Compression.Formats.ChecksumType

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also