NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BinaryWriter.Seek

Sets the position within the current stream.

[Visual Basic]
Public Function Seek( _
   ByVal offset As Integer, _
   ByVal origin As SeekOrigin _
) As Long
[C#]
public long Seek(
   int offset,
   SeekOrigin origin
);
[C++]
public: __int64 Seek(
   int offset,
   SeekOrigin origin
);
[JScript]
public function Seek(
   offset : int,
   origin : SeekOrigin
) : long;

Parameters

offset
A byte offset relative to origin.
origin
[To be supplied.]

Return Value

The position with the current stream.

See Also

BinaryWriter Class | BinaryWriter Members | System.IO Namespace