IdeaBlade DevForce 2010 Help Reference
SlurpBlock Method
See Also  Send Feedback
IdeaBlade.Core Assembly > Ionic.Crc Namespace > CRC32 Class : SlurpBlock Method



block
block of bytes to slurp
offset
starting point in the block
count
how many bytes within the block to slurp
Update the value for the running CRC32 using the given block of bytes. This is useful when using the CRC32() class in a Stream.

Syntax

Visual Basic (Declaration) 
Public Sub SlurpBlock( _
   ByVal block() As Byte, _
   ByVal offset As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As CRC32
Dim block() As Byte
Dim offset As Integer
Dim count As Integer
 
instance.SlurpBlock(block, offset, count)
C# 
public void SlurpBlock( 
   byte[] block,
   int offset,
   int count
)
C++/CLI 
public:
void SlurpBlock( 
   array<byte>^ block,
   int offset,
   int count
) 

Parameters

block
block of bytes to slurp
offset
starting point in the block
count
how many bytes within the block to slurp

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.