CloseLog Método
Closes the log.
Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)
Sintaxis
'Declaración
Public Sub CloseLog
'Uso
Dim instance As LogProvider
instance.CloseLog()
public void CloseLog()
public:
void CloseLog()
member CloseLog : unit -> unit
public function CloseLog()
Comentarios
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.
Ejemplos
The following code example shows how to close the log.
CloseLog();
CloseLog()