Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Retrieves the specified number of bytes from an IDTSBLOBObject100 object.
Espace de noms : Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly : Microsoft.SqlServer.DTSPipelineWrap (en Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntaxe
'Déclaration
Sub GetData ( _
dwOffset As UInteger, _
ByRef lpPointer As Byte, _
dwLength As UInteger, _
<OutAttribute> ByRef lpdwWritten As UInteger _
)
'Utilisation
Dim instance As IDTSBLOBObject100
Dim dwOffset As UInteger
Dim lpPointer As Byte
Dim dwLength As UInteger
Dim lpdwWritten As UInteger
instance.GetData(dwOffset, lpPointer, _
dwLength, lpdwWritten)
void GetData(
uint dwOffset,
ref byte lpPointer,
uint dwLength,
out uint lpdwWritten
)
void GetData(
[InAttribute] unsigned int dwOffset,
[InAttribute] unsigned char% lpPointer,
[InAttribute] unsigned int dwLength,
[OutAttribute] unsigned int% lpdwWritten
)
abstract GetData :
dwOffset:uint32 *
lpPointer:byte byref *
dwLength:uint32 *
lpdwWritten:uint32 byref -> unit
function GetData(
dwOffset : uint,
lpPointer : byte,
dwLength : uint,
lpdwWritten : uint
)
Paramètres
- dwOffset
Type : System.UInt32
The location to begin retrieving the bytes.
- lpPointer
Type : System.Byte%
A pointer to the bytes returned by the IDTSBLOBObject100.
- dwLength
Type : System.UInt32
The number of bytes to retrieve.
- lpdwWritten
Type : System.UInt32%
An out parameter that indicates the number of bytes written to the lpPointer parameter.
Notes
This method is used to retrieve a set of bytes from the IDTSBLOBObject100.