API Reference
Class
LogEventArgs
Represents the arguments for a log event.
Inheritance
- EventArgs
- LogEventArgs
Constructors
LogEventArgs 3 overloads
public LogEventArgs(String message, Object[] args) #Initializes a new instance of the LogEventArgs class.
Parameters
- message System.String
- The message.
- args System.Object[]
- The arguments.
public LogEventArgs(String message) #Initializes a new instance of the LogEventArgs class.
Parameters
- message System.String
- The message.
public LogEventArgs(String activity, String currentOperation, Nullable<Int32> currentSteps, Nullable<Int32> totalSteps, Nullable<Int32> percentage) #Initializes a new instance of the LogEventArgs class.
Parameters
- activity System.String
- The activity.
- currentOperation System.String
- The current operation.
- currentSteps System.Nullable{System.Int32}
- The current steps.
- totalSteps System.Nullable{System.Int32}
- The total steps.
- percentage System.Nullable{System.Int32}
- The percentage.
Inherited Methods
Properties
public Nullable<Int32> ProgressPercentage { get; set; } #Progress percentage
public Nullable<Int32> ProgressTotalSteps { get; set; } #Progress total steps
public Nullable<Int32> ProgressCurrentSteps { get; set; } #Progress current steps
public String ProgressCurrentOperation { get; set; } #Progress current operation
public String FullMessage { get; set; } #Message to be written including arguments substitution