Condividi tramite


Metodo CloseLog

Closes the log.

Spazio dei nomi  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Sintassi

'Dichiarazione
Public Sub CloseLog
'Utilizzo
Dim instance As LogProvider

instance.CloseLog()
public void CloseLog()
public:
void CloseLog()
member CloseLog : unit -> unit 
public function CloseLog()

Osservazioni

This method should be called at the end of package execution, after all of the objects in the package have completed execution, or when the package terminates due to errors.

Esempi

The following code example shows how to close the log.

CloseLog();
CloseLog()