Class EndLoadProcessTask
Will set the table entry for current load process to ended.
Inheritance
System.Object
EndLoadProcessTask
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: ETLBox.dll
Syntax
public sealed class EndLoadProcessTask : ControlFlowTask, ILoggableTask
Constructors
EndLoadProcessTask()
Declaration
public EndLoadProcessTask()
EndLoadProcessTask(Nullable<Int64>)
Declaration
public EndLoadProcessTask(long? loadProcessId)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessId |
|
EndLoadProcessTask(Nullable<Int64>, String)
Declaration
public EndLoadProcessTask(long? loadProcessId, string endMessage)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessId |
|
System.String |
endMessage |
|
EndLoadProcessTask(String)
Declaration
public EndLoadProcessTask(string endMessage)
Parameters
Type |
Name |
Description |
System.String |
endMessage |
|
Properties
EndMessage
Declaration
public string EndMessage { get; set; }
Property Value
Type |
Description |
System.String |
|
LoadProcessId
Declaration
public long? LoadProcessId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int64> |
|
Sql
Declaration
public string Sql { get; }
Property Value
Type |
Description |
System.String |
|
TaskName
Declaration
public override string TaskName { get; set; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
End()
Declaration
End(IConnectionManager)
Declaration
public static void End(IConnectionManager connectionManager)
Parameters
End(IConnectionManager, Nullable<Int64>)
Declaration
public static void End(IConnectionManager connectionManager, long? loadProcessId)
Parameters
Type |
Name |
Description |
IConnectionManager |
connectionManager |
|
System.Nullable<System.Int64> |
loadProcessId |
|
End(IConnectionManager, Nullable<Int64>, String)
Declaration
public static void End(IConnectionManager connectionManager, long? loadProcessId, string endMessage)
Parameters
Type |
Name |
Description |
IConnectionManager |
connectionManager |
|
System.Nullable<System.Int64> |
loadProcessId |
|
System.String |
endMessage |
|
End(IConnectionManager, String)
Declaration
public static void End(IConnectionManager connectionManager, string endMessage)
Parameters
End(Nullable<Int64>)
Declaration
public static void End(long? loadProcessId)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessId |
|
End(Nullable<Int64>, String)
Declaration
public static void End(long? loadProcessId, string endMessage)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessId |
|
System.String |
endMessage |
|
End(String)
Declaration
public static void End(string endMessage)
Parameters
Type |
Name |
Description |
System.String |
endMessage |
|
Execute()
Declaration
Implements