IStream.RemoteSeek(_LARGE_INTEGER, UInt32, _ULARGE_INTEGER) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Changes the seek pointer to a new location relative to the beginning of the stream, to the end of the stream, or to the current seek pointer.
public:
void RemoteSeek(Microsoft::SqlServer::Dts::Runtime::Wrapper::_LARGE_INTEGER dlibMove, System::UInt32 dwOrigin, [Runtime::InteropServices::Out] Microsoft::SqlServer::Dts::Runtime::Wrapper::_ULARGE_INTEGER % plibNewPosition);
public void RemoteSeek (Microsoft.SqlServer.Dts.Runtime.Wrapper._LARGE_INTEGER dlibMove, uint dwOrigin, out Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER plibNewPosition);
abstract member RemoteSeek : Microsoft.SqlServer.Dts.Runtime.Wrapper._LARGE_INTEGER * uint32 * _ULARGE_INTEGER -> unit
Public Sub RemoteSeek (dlibMove As _LARGE_INTEGER, dwOrigin As UInteger, ByRef plibNewPosition As _ULARGE_INTEGER)
Parameters
- dlibMove
- _LARGE_INTEGER
The displacement to add to dwOrigin
.
- dwOrigin
- UInt32
The origin of the seek.
- plibNewPosition
- _ULARGE_INTEGER
On successful return, contains the offset of the seek pointer from the beginning of the stream.