此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
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.
命名空间: Microsoft.SqlServer.Dts.Runtime.Wrapper
程序集: Microsoft.SqlServer.DTSRuntimeWrap(在 Microsoft.SqlServer.DTSRuntimeWrap.dll 中)
语法
声明
Sub RemoteSeek ( _
dlibMove As _LARGE_INTEGER, _
dwOrigin As UInteger, _
<OutAttribute> ByRef plibNewPosition As _ULARGE_INTEGER _
)
用法
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
)
参数
- dlibMove
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper._LARGE_INTEGER
The displacement to add to dwOrigin.
- dwOrigin
类型:System.UInt32
The origin of the seek.
- plibNewPosition
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
On successful return, contains the offset of the seek pointer from the beginning of the stream.