Método CreateBuffer
Creates an IDTSBuffer100 based on the specified buffer type.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (em Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintaxe
'Declaração
Function CreateBuffer ( _
hBufferType As Integer, _
pOwner As IDTSComponentMetaData100 _
) As IDTSBuffer100
'Uso
Dim instance As IDTSBufferManager100
Dim hBufferType As Integer
Dim pOwner As IDTSComponentMetaData100
Dim returnValue As IDTSBuffer100
returnValue = instance.CreateBuffer(hBufferType, _
pOwner)
IDTSBuffer100 CreateBuffer(
int hBufferType,
IDTSComponentMetaData100 pOwner
)
IDTSBuffer100^ CreateBuffer(
[InAttribute] int hBufferType,
[InAttribute] IDTSComponentMetaData100^ pOwner
)
abstract CreateBuffer :
hBufferType:int *
pOwner:IDTSComponentMetaData100 -> IDTSBuffer100
function CreateBuffer(
hBufferType : int,
pOwner : IDTSComponentMetaData100
) : IDTSBuffer100
Parâmetros
- hBufferType
Tipo: System. . :: . .Int32
The ID of the registered IDTSBuffer100 type.
- pOwner
Tipo: Microsoft.SqlServer.Dts.Pipeline.Wrapper. . :: . .IDTSComponentMetaData100
The IDTSComponentMetaData100 of the component that owns the new IDTSBuffer100.
Valor de retorno
Tipo: Microsoft.SqlServer.Dts.Pipeline.Wrapper. . :: . .IDTSBuffer100
The newly created IDTSBuffer100 object.
Comentários
This method creates a new IDTSBuffer100 based on the buffer definition defined by the hBufferType parameter.
Consulte também