Class GetLogAsJSONTask
Returns the content of the etl.Log table as a JSON string.
Inheritance
System.Object
GetLogAsJSONTask
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 GetLogAsJSONTask : ControlFlowTask, ILoggableTask
Constructors
GetLogAsJSONTask()
Declaration
public GetLogAsJSONTask()
GetLogAsJSONTask(Nullable<Int64>)
Declaration
public GetLogAsJSONTask(long? loadProcessKey)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessKey |
|
Fields
_loadProcessKey
Declaration
public long? _loadProcessKey
Field Value
Type |
Description |
System.Nullable<System.Int64> |
|
Properties
ContainerTypes
Declaration
public List<string> ContainerTypes { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<System.String> |
|
JSON
Declaration
public string JSON { get; }
Property Value
Type |
Description |
System.String |
|
LoadProcessKey
Declaration
public long? LoadProcessKey { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int64> |
|
LogEntryHierarchy
Declaration
public List<LogHierarchyEntry> LogEntryHierarchy { get; set; }
Property Value
TaskName
Declaration
public override string TaskName { get; set; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
Create()
Declaration
public GetLogAsJSONTask Create()
Returns
Execute()
Declaration
GetJSON()
Declaration
public static string GetJSON()
Returns
Type |
Description |
System.String |
|
GetJSON(IConnectionManager)
Declaration
public static string GetJSON(IConnectionManager connectionManager)
Parameters
Returns
Type |
Description |
System.String |
|
GetJSON(IConnectionManager, Nullable<Int32>)
Declaration
public static string GetJSON(IConnectionManager connectionManager, int? loadProcessKey)
Parameters
Type |
Name |
Description |
IConnectionManager |
connectionManager |
|
System.Nullable<System.Int32> |
loadProcessKey |
|
Returns
Type |
Description |
System.String |
|
GetJSON(Nullable<Int64>)
Declaration
public static string GetJSON(long? loadProcessKey)
Parameters
Type |
Name |
Description |
System.Nullable<System.Int64> |
loadProcessKey |
|
Returns
Type |
Description |
System.String |
|
Implements