ISequentialStream.RemoteWrite メソッド
この API は、SQL Server 2012 インフラストラクチャをサポートします。独自に作成したコードから直接使用するためのものではありません。
現在のシーク ポインターから始めて、指定したバイト数をストリーム オブジェクトに書き込みます。
名前空間: Microsoft.SqlServer.Dts.Runtime.Wrapper
アセンブリ: Microsoft.SqlServer.DTSRuntimeWrap (Microsoft.SqlServer.DTSRuntimeWrap.dll)
構文
'宣言
Sub RemoteWrite ( _
ByRef pv As Byte, _
cb As UInteger, _
<OutAttribute> ByRef pcbWritten As UInteger _
)
'使用
Dim instance As ISequentialStream
Dim pv As Byte
Dim cb As UInteger
Dim pcbWritten As UInteger
instance.RemoteWrite(pv, cb, pcbWritten)
void RemoteWrite(
ref byte pv,
uint cb,
out uint pcbWritten
)
void RemoteWrite(
[InAttribute] unsigned char% pv,
[InAttribute] unsigned int cb,
[OutAttribute] unsigned int% pcbWritten
)
abstract RemoteWrite :
pv:byte byref *
cb:uint32 *
pcbWritten:uint32 byref -> unit
function RemoteWrite(
pv : byte,
cb : uint,
pcbWritten : uint
)
パラメーター
- pv
型: System.Byte%
このストリームを書き込むバッファーです。
- cb
型: System.UInt32
ストリームに書き込むバイト数です。
- pcbWritten
型: System.UInt32%
正常に返された場合は、ストリーム オブジェクトに書き込まれた実際のバイト数が含まれています。