IStream.RemoteRead Method (Byte%, UInt32, UInt32%)
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 RemoteRead ( _
<OutAttribute> ByRef pv As Byte, _
cb As UInteger, _
<OutAttribute> ByRef pcbRead As UInteger _
)
'Usage
Dim instance As IStream
Dim pv As Byte
Dim cb As UInteger
Dim pcbRead As UInteger
instance.RemoteRead(pv, cb, pcbRead)
void RemoteRead(
out byte pv,
uint cb,
out uint pcbRead
)
void RemoteRead(
[OutAttribute] unsigned char% pv,
[InAttribute] unsigned int cb,
[OutAttribute] unsigned int% pcbRead
)
abstract RemoteRead :
pv:byte byref *
cb:uint32 *
pcbRead:uint32 byref -> unit
function RemoteRead(
pv : byte,
cb : uint,
pcbRead : uint
)