Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds bytes to an IDTSBLOBObject100 object.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Sub AddData ( _
ByRef lpData As Byte, _
dwLength As UInteger _
)
'Usage
Dim instance As IDTSBLOBObject100
Dim lpData As Byte
Dim dwLength As UInteger
instance.AddData(lpData, dwLength)
void AddData(
ref byte lpData,
uint dwLength
)
void AddData(
[InAttribute] unsigned char% lpData,
[InAttribute] unsigned int dwLength
)
abstract AddData :
lpData:byte byref *
dwLength:uint32 -> unit
function AddData(
lpData : byte,
dwLength : uint
)
Parameters
- lpData
Type: System.Byte%
A pointer to the bytes to add to the IDTSBLOBObject100.
- dwLength
Type: System.UInt32
The number of bytes.
Remarks
This method appends the bytes specified by lpData to the IDTSBLOBObject100 object.