This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

FileChangeEntry Pennington.Tui

A single file in the change log.

Properties

Count int
Default: 0
Total number of changes recorded this session.
FullPath string
Absolute path to the file.
LastChanged System.DateTimeOffset
Timestamp of the most recent change.
LastChangeType System.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

FullPath string
Absolute path to the file.
LastChangeType WatcherChangeTypes
Type of the most recent change.
LastChanged DateTimeOffset
Timestamp of the most recent change.
Count int
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
; }