Partager via


Méthode PipelineComponent.GetErrorOutputInfo

Returns the index and ID of the error output of the component.

Espace de noms :  Microsoft.SqlServer.Dts.Pipeline
Assembly :  Microsoft.SqlServer.PipelineHost (en Microsoft.SqlServer.PipelineHost.dll)

Syntaxe

'Déclaration
Public Function GetErrorOutputInfo ( _
    ByRef iErrorOutputID As Integer, _
    ByRef iErrorOutputIndex As Integer _
) As Boolean
'Utilisation
Dim instance As PipelineComponent 
Dim iErrorOutputID As Integer 
Dim iErrorOutputIndex As Integer 
Dim returnValue As Boolean 

returnValue = instance.GetErrorOutputInfo(iErrorOutputID, _
    iErrorOutputIndex)
public bool GetErrorOutputInfo(
    ref int iErrorOutputID,
    ref int iErrorOutputIndex
)
public:
bool GetErrorOutputInfo(
    int% iErrorOutputID, 
    int% iErrorOutputIndex
)
member GetErrorOutputInfo : 
        iErrorOutputID:int byref * 
        iErrorOutputIndex:int byref -> bool
public function GetErrorOutputInfo(
    iErrorOutputID : int, 
    iErrorOutputIndex : int
) : boolean

Paramètres

Valeur de retour

Type : System.Boolean
true if the component has an IDTSOutput100 object with the IsErrorOut property set to true; otherwise, false.

Notes

GetErrorOutputInfo is a helper function provided by the base class that retrieves the error output of the component. If the component does not have an error output, the method returns false.

For more information, see Utilisation de sorties d'erreur dans un composant de flux de données.

Voir aussi

Référence

PipelineComponent Classe

Espace de noms Microsoft.SqlServer.Dts.Pipeline