Domain Detective

API Reference

Class

LogEventArgs

Namespace DomainDetective
Assembly DomainDetective
Base EventArgs

Provides details about a logging event.

Inheritance

  • EventArgs
  • LogEventArgs

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

LogEventArgs 3 overloads
public LogEventArgs(String message, Object[] args) #

Initializes a new instance of the LogEventArgs class.

Parameters

message System.String requiredposition: 0
args System.Object[] requiredposition: 1
public LogEventArgs(String message) #

Initializes a new instance of the LogEventArgs class.

Parameters

message System.String requiredposition: 0
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 requiredposition: 0
currentOperation System.String requiredposition: 1
currentSteps System.Nullable{System.Int32} requiredposition: 2
totalSteps System.Nullable{System.Int32} requiredposition: 3
percentage System.Nullable{System.Int32} requiredposition: 4

Properties

public String Code { get; set; } #

Optional structured event code.

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 ProgressActivity { get; set; } #

Progress activity

public String FullMessage { get; set; } #

Message to be written including arguments substitution

public String Message { get; set; } #

Message to be written

public Object[] Args { get; set; } #

Gets or sets the args value.

{{ include "footer" }}