DefaultEvents.OnError Metodo

Definizione

Questo evento viene generato da un'attività o da un contenitore quando si verifica un errore.

public:
 virtual bool OnError(Microsoft::SqlServer::Dts::Runtime::DtsObject ^ source, int errorCode, System::String ^ subComponent, System::String ^ description, System::String ^ helpFile, int helpContext, System::String ^ idofInterfaceWithError);
public virtual bool OnError (Microsoft.SqlServer.Dts.Runtime.DtsObject source, int errorCode, string subComponent, string description, string helpFile, int helpContext, string idofInterfaceWithError);
abstract member OnError : Microsoft.SqlServer.Dts.Runtime.DtsObject * int * string * string * string * int * string -> bool
override this.OnError : Microsoft.SqlServer.Dts.Runtime.DtsObject * int * string * string * string * int * string -> bool
Public Overridable Function OnError (source As DtsObject, errorCode As Integer, subComponent As String, description As String, helpFile As String, helpContext As Integer, idofInterfaceWithError As String) As Boolean

Parametri

source
DtsObject

Oggetto che ha provocato l'evento.

errorCode
Int32

Valore intero che identifica il messaggio di errore. Questo identificatore deve essere univoco se utilizzato in combinazione con il parametro source, pertanto la combinazione di source e errorCode deve essere univoca. Tuttavia, se utilizzato da solo, errorCode non deve essere univoco.

subComponent
String

Stringa arbitraria che identifica il sottomodulo all'interno di un'origine: ad esempio, la trasformazione in un'attività Pipeline.

description
String

Testo del messaggio.

helpFile
String

Percorso del file della Guida che contiene informazioni dettagliate.

helpContext
Int32

Identificatore dell'argomento nel file della Guida.

idofInterfaceWithError
String

Rappresentazione testuale del GUID dell'interfaccia che ha provocato l'errore.

Restituisce

Valore booleano che indica se l'esecuzione dell'attività deve continuare. Un valore true indica che l'errore deve provocare l'annullamento dell'attività. Il valore false indica che l'errore non deve interrompere l'esecuzione dell'attività, ma l'attività deve continuare.

Implementazioni

Si applica a