Opc.Ua.Core
Seek Method



Opc.Ua.Bindings Namespace > ArraySegmentStream Class : Seek Method
A byte offset relative to the origin parameter.
When overridden in a derived class, sets the position within the current stream.
Syntax
'Declaration
 
Public Overrides Function Seek( _
   ByVal offset As Long, _
   ByVal origin As SeekOrigin _
) As Long
'Usage
 
Dim instance As ArraySegmentStream
Dim offset As Long
Dim origin As SeekOrigin
Dim value As Long
 
value = instance.Seek(offset, origin)
public override long Seek( 
   long offset,
   SeekOrigin origin
)
public:
int64 Seek( 
   int64 offset,
   SeekOrigin origin
) override 

Parameters

offset
A byte offset relative to the origin parameter.
origin

Return Value

The new position within the current stream.
Exceptions
ExceptionDescription
An I/O error occurs.
The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
Methods were called after the stream was closed.
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

ArraySegmentStream Class
ArraySegmentStream Members