Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Questa API supporta l'infrastruttura SQL Server 2012 e non può essere utilizzata direttamente dal codice.
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.
Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintassi
'Dichiarazione
Sub RemoteSeek ( _
dlibMove As _LARGE_INTEGER, _
dwOrigin As UInteger, _
<OutAttribute> ByRef plibNewPosition As _ULARGE_INTEGER _
)
'Utilizzo
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
)
Parametri
- dlibMove
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper._LARGE_INTEGER
The displacement to add to dwOrigin.
- dwOrigin
Tipo: System.UInt32
The origin of the seek.
- plibNewPosition
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
On successful return, contains the offset of the seek pointer from the beginning of the stream.