Table of Contents

Class LogExportEventArgs

Namespace
SharpConsoleUI.Plugins.DeveloperTools
Assembly
SharpConsoleUI.dll

Event arguments for log export events.

public record LogExportEventArgs : IEquatable<LogExportEventArgs>
Inheritance
LogExportEventArgs
Implements
Inherited Members

Constructors

LogExportEventArgs(string, int)

Event arguments for log export events.

public LogExportEventArgs(string FilePath, int EntryCount)

Parameters

FilePath string

The path where logs were exported.

EntryCount int

The number of log entries exported.

Properties

EntryCount

The number of log entries exported.

public int EntryCount { get; init; }

Property Value

int

FilePath

The path where logs were exported.

public string FilePath { get; init; }

Property Value

string