FileChangeEntry Pennington.Tui
A single file in the change log.
Properties
Countint- Default:
0Total number of changes recorded this session. FullPathstring- Absolute path to the file.
LastChangedSystem.DateTimeOffset- Timestamp of the most recent change.
LastChangeTypeSystem.IO.WatcherChangeTypes- Type of the most recent change.
Constructors
.ctor
#public readonly record struct FileChangeEntry(
string FullPath,
WatcherChangeTypes LastChangeType,
DateTimeOffset LastChanged,
int Count);A single file in the change log.
Parameters
FullPathstring- Absolute path to the file.
LastChangeTypeWatcherChangeTypes- Type of the most recent change.
LastChangedDateTimeOffset- Timestamp of the most recent change.
Countint- Total number of changes recorded this session.
Pennington.Tui.FileChangeEntry
namespace Pennington.Tui;
/// A single file in the change log.
public record FileChangeEntry
{
/// A single file in the change log.
public readonly record struct FileChangeEntry(
string FullPath,
WatcherChangeTypes LastChangeType,
DateTimeOffset LastChanged,
int Count);
/// Total number of changes recorded this session.
int Count
;
/// Absolute path to the file.
string FullPath
;
/// Timestamp of the most recent change.
DateTimeOffset LastChanged
;
/// Type of the most recent change.
WatcherChangeTypes LastChangeType
;
}