Método GetData
Retrieves the specified number of bytes from an IDTSBLOBObject100 object.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (em Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintaxe
'Declaração
Sub GetData ( _
dwOffset As UInteger, _
ByRef lpPointer As Byte, _
dwLength As UInteger, _
<OutAttribute> ByRef lpdwWritten As UInteger _
)
'Uso
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
)
Parâmetros
- dwOffset
Tipo: System. . :: . .UInt32
The location to begin retrieving the bytes.
- lpPointer
Tipo: System. . :: . .Byte%
A pointer to the bytes returned by the IDTSBLOBObject100.
- dwLength
Tipo: System. . :: . .UInt32
The number of bytes to retrieve.
- lpdwWritten
Tipo: System. . :: . .UInt32%
An out parameter that indicates the number of bytes written to the lpPointer parameter.
Consulte também