IDTSBLOBObject100.PutData(UInt32, Byte, UInt32, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds bytes in a specific location in the IDTSBLOBObject100
public:
void PutData(System::UInt32 dwOffset, System::Byte % lpPointer, System::UInt32 dwLength, [Runtime::InteropServices::Out] System::UInt32 % lpdwRead);
[System.Runtime.InteropServices.DispId(106)]
public void PutData (uint dwOffset, ref byte lpPointer, uint dwLength, out uint lpdwRead);
[<System.Runtime.InteropServices.DispId(106)>]
abstract member PutData : uint32 * byte * uint32 * uint32 -> unit
Public Sub PutData (dwOffset As UInteger, ByRef lpPointer As Byte, dwLength As UInteger, ByRef lpdwRead As UInteger)
Parameters
- dwOffset
- UInt32
The location to begin writing the bytes.
- lpPointer
- Byte
A pointer to the byte data to add to the IDTSBLOBObject100.
- dwLength
- UInt32
The number of bytes to write.
- lpdwRead
- UInt32
The number of bytes written to the IDTSBLOBObject100.
- Attributes
Remarks
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.