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!

NetworkStream.Seek

Seeks a specific position in the stream. This method is not supported by the System.Net.Socket..NetworkStream class.

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

Parameters

offset
[To be supplied.]
origin
[To be supplied.]

Exceptions

Exception Type Condition
NotSupportedException Any access.

See Also

NetworkStream Class | NetworkStream Members | System.Net.Sockets Namespace