Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Adds bytes in a specific location in the IDTSBLOBObject100
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Sub PutData ( _
dwOffset As UInteger, _
ByRef lpPointer As Byte, _
dwLength As UInteger, _
<OutAttribute> ByRef lpdwRead As UInteger _
)
'Usage
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
)
Parameter
- dwOffset
Typ: System.UInt32
The location to begin writing the bytes.
- lpPointer
Typ: System.Byte%
A pointer to the byte data to add to the IDTSBLOBObject100.
- dwLength
Typ: System.UInt32
The number of bytes to write.
- lpdwRead
Typ: System.UInt32%
The number of bytes written to the IDTSBLOBObject100.
Hinweise
This method adds the specified bytes to a specific location in the collection of bytes stored in the IDTSBLOBObject100.
It cannot be called if an IStream object has already been retrieved from the object using the GetStream method.