5 writes to _mTime
System.Formats.Tar (5)
System\Formats\Tar\TarEntry.cs (1)
112
_header.
_mTime
= value;
System\Formats\Tar\TarHeader.cs (1)
112
_mTime
= mTime;
System\Formats\Tar\TarHeader.Read.cs (1)
142
_mTime
= mTime;
System\Formats\Tar\TarHeader.Write.cs (1)
471
_mTime
= DateTimeOffset.UnixEpoch, // Stores as series of 0 characters
System\Formats\Tar\TarWriter.Unix.cs (1)
87
entry._header.
_mTime
= TarHelpers.GetDateTimeOffsetFromSecondsSinceEpoch(status.MTime);
4 references to _mTime
System.Formats.Tar (4)
System\Formats\Tar\TarEntry.cs (1)
105
get => _header.
_mTime
;
System\Formats\Tar\TarHeader.cs (2)
122
: this(format, other._name, other._mode, other.
_mTime
, typeFlag)
249
ea[PaxEaMTime] = TarHelpers.GetTimestampStringFromDateTimeOffset(
_mTime
);
System\Formats\Tar\TarHeader.Write.cs (1)
672
checksum += WriteAsTimestamp(
_mTime
, buffer.Slice(FieldLocations.MTime, FieldLengths.MTime));