IStream.RemoteSeek Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
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.
Namespace: Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Syntax
'Declaration
Sub RemoteSeek ( _
dlibMove As _LARGE_INTEGER, _
dwOrigin As UInteger, _
<OutAttribute> ByRef plibNewPosition As _ULARGE_INTEGER _
)
'Usage
Dim instance As IStream
Dim dlibMove As _LARGE_INTEGER
Dim dwOrigin As UInteger
Dim plibNewPosition As _ULARGE_INTEGER
instance.RemoteSeek(dlibMove, dwOrigin, _
plibNewPosition)
void RemoteSeek(
_LARGE_INTEGER dlibMove,
uint dwOrigin,
out _ULARGE_INTEGER plibNewPosition
)
void RemoteSeek(
[InAttribute] _LARGE_INTEGER dlibMove,
[InAttribute] unsigned int dwOrigin,
[OutAttribute] _ULARGE_INTEGER% plibNewPosition
)
abstract RemoteSeek :
dlibMove:_LARGE_INTEGER *
dwOrigin:uint32 *
plibNewPosition:_ULARGE_INTEGER byref -> unit
function RemoteSeek(
dlibMove : _LARGE_INTEGER,
dwOrigin : uint,
plibNewPosition : _ULARGE_INTEGER
)
Parameters
- dlibMove
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper._LARGE_INTEGER
The displacement to add to dwOrigin.
- dwOrigin
Type: System.UInt32
The origin of the seek.
- plibNewPosition
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
On successful return, contains the offset of the seek pointer from the beginning of the stream.