Xceed .NET Libraries Documentation
Position Property (ChecksumStream)


Xceed.Compression.Formats Assembly > Xceed.Compression.Formats Namespace > ChecksumStream Class : Position Property
Gets or sets the position within the current stream.
Syntax
'Declaration
 
Public Overrides Property Position As Long
'Usage
 
Dim instance As ChecksumStream
Dim value As Long
 
instance.Position = value
 
value = instance.Position
public override long Position {get; set;}

Property Value

The current position within the stream.
Remarks

The stream must support seeking to get or set the position. You can use the CanSeek property to determine if the stream supports seeking.

Seeking to any location beyond the length of the stream is supported.

The Position property does not keep track of the number of bytes from the stream that have been consumed, skipped, or both.

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

Reference

ChecksumStream Class
ChecksumStream Members
Base Implementation in Position