Метод CloseLog
Closes the log.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)
Синтаксис
'Декларация
Public Sub CloseLog
'Применение
Dim instance As LogProvider
instance.CloseLog()
public void CloseLog()
public:
void CloseLog()
member CloseLog : unit -> unit
public function CloseLog()
Замечания
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.
Примеры
The following code example shows how to close the log.
CloseLog();
CloseLog()