IDTSBLOBObject100.PutData メソッド
IDTSBLOBObject100 の特定の場所にバイトを追加します。
名前空間: Microsoft.SqlServer.Dts.Pipeline.Wrapper
アセンブリ: Microsoft.SqlServer.DTSPipelineWrap (Microsoft.SqlServer.DTSPipelineWrap.dll)
構文
'宣言
Sub PutData ( _
dwOffset As UInteger, _
ByRef lpPointer As Byte, _
dwLength As UInteger, _
<OutAttribute> ByRef lpdwRead As UInteger _
)
'使用
Dim instance As IDTSBLOBObject100
Dim dwOffset As UInteger
Dim lpPointer As Byte
Dim dwLength As UInteger
Dim lpdwRead As UInteger
instance.PutData(dwOffset, lpPointer, _
dwLength, lpdwRead)
void PutData(
uint dwOffset,
ref byte lpPointer,
uint dwLength,
out uint lpdwRead
)
void PutData(
[InAttribute] unsigned int dwOffset,
[InAttribute] unsigned char% lpPointer,
[InAttribute] unsigned int dwLength,
[OutAttribute] unsigned int% lpdwRead
)
abstract PutData :
dwOffset:uint32 *
lpPointer:byte byref *
dwLength:uint32 *
lpdwRead:uint32 byref -> unit
function PutData(
dwOffset : uint,
lpPointer : byte,
dwLength : uint,
lpdwRead : uint
)
パラメーター
- dwOffset
型: System.UInt32
バイトの書き込みを開始する場所です。
- lpPointer
型: System.Byte%
IDTSBLOBObject100 に追加するバイト データを指すポインターです。
- dwLength
型: System.UInt32
書き込むバイト数です。
- lpdwRead
型: System.UInt32%
IDTSBLOBObject100 に書き込まれたバイト数です。
説明
このメソッドは、指定したバイトを IDTSBLOBObject100 に格納されているバイトのコレクションの特定の位置に追加します。
GetStream メソッドを使用してオブジェクトから IStream オブジェクトが既に取得されている場合は、呼び出すことができません。