IStream.RemoteSeek Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
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
- dwOrigin
Type: System.UInt32
- plibNewPosition
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
See Also