Метод IStream.RemoteSeek
Этот 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.