Noemax DotNetGZip Report an issue | Discuss in forums
DeflateStream.Seek(long,SeekOrigin) Method
See Also 
Noemax.GZip Assembly > Noemax.GZip Namespace > DeflateStream Class : Seek Method



offset
The location in the stream.
origin
One of the SeekOrigin values.
This method is not supported and always throws a NotSupportedException.


Namespace: Noemax.GZip
Assembly: Noemax.GZip (in Noemax.GZip.dll)

Syntax

Visual Basic (Declaration) 
Overrides Public Function Seek( _
   ByVal offset As Long, _
   ByVal origin As SeekOrigin _
) As Long
Visual Basic (Usage)Copy Code
Dim instance As DeflateStream
Dim offset As Long
Dim origin As SeekOrigin
Dim value As Long
 
value = instance.Seek(offset, origin)
C# 
public override long Seek( 
   long offset,
   SeekOrigin origin
)
C++/CLI 
public:
long Seek( 
   long offset,
   SeekOrigin origin
) override 

Parameters

offset
The location in the stream.
origin
One of the SeekOrigin values.

Return Value

A long value.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

See Also

Reference

DeflateStream Class
DeflateStream Members
Base Implementation in System.IO.Stream