Metodo IStream.RemoteCopyTo
Questa API supporta l'infrastruttura SQL Server 2012 e non può essere utilizzata direttamente dal codice.
Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream.
Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly: Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)
Sintassi
'Dichiarazione
Sub RemoteCopyTo ( _
pstm As IStream, _
cb As _ULARGE_INTEGER, _
<OutAttribute> ByRef pcbRead As _ULARGE_INTEGER, _
<OutAttribute> ByRef pcbWritten As _ULARGE_INTEGER _
)
'Utilizzo
Dim instance As IStream
Dim pstm As IStream
Dim cb As _ULARGE_INTEGER
Dim pcbRead As _ULARGE_INTEGER
Dim pcbWritten As _ULARGE_INTEGER
instance.RemoteCopyTo(pstm, cb, pcbRead, _
pcbWritten)
void RemoteCopyTo(
IStream pstm,
_ULARGE_INTEGER cb,
out _ULARGE_INTEGER pcbRead,
out _ULARGE_INTEGER pcbWritten
)
void RemoteCopyTo(
[InAttribute] IStream^ pstm,
[InAttribute] _ULARGE_INTEGER cb,
[OutAttribute] _ULARGE_INTEGER% pcbRead,
[OutAttribute] _ULARGE_INTEGER% pcbWritten
)
abstract RemoteCopyTo :
pstm:IStream *
cb:_ULARGE_INTEGER *
pcbRead:_ULARGE_INTEGER byref *
pcbWritten:_ULARGE_INTEGER byref -> unit
function RemoteCopyTo(
pstm : IStream,
cb : _ULARGE_INTEGER,
pcbRead : _ULARGE_INTEGER,
pcbWritten : _ULARGE_INTEGER
)
Parametri
- pstm
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper.IStream
A pointer to the destination stream. The stream pointed to be pstm can be a new stream or a clone of the source stream.
- cb
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER
The number of bytes to copy from the source stream.
- pcbRead
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
A pointer to the location where this method writes the actual number of bytes read from the source.
- pcbWritten
Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper._ULARGE_INTEGER%
A pointer to the location where this method writes the actual number of bytes written to the destination.