5 writes to _mTime
System.Formats.Tar (5)
System\Formats\Tar\TarEntry.cs (1)
108
_header.
_mTime
= value;
System\Formats\Tar\TarHeader.cs (1)
91
_mTime
= mTime;
System\Formats\Tar\TarHeader.Read.cs (1)
126
_mTime
= mTime;
System\Formats\Tar\TarHeader.Write.cs (1)
472
_mTime
= DateTimeOffset.UnixEpoch, // Stores as series of 0 characters
System\Formats\Tar\TarWriter.Unix.cs (1)
65
entry._header.
_mTime
= TarHelpers.GetDateTimeOffsetFromSecondsSinceEpoch(status.MTime);
4 references to _mTime
System.Formats.Tar (4)
System\Formats\Tar\TarEntry.cs (1)
101
get => _header.
_mTime
;
System\Formats\Tar\TarHeader.cs (1)
101
: this(format, other._name, other._mode, other.
_mTime
, typeFlag)
System\Formats\Tar\TarHeader.Write.cs (2)
673
checksum += WriteAsTimestamp(
_mTime
, buffer.Slice(FieldLocations.MTime, FieldLengths.MTime));
947
ExtendedAttributes[PaxEaMTime] = TarHelpers.GetTimestampStringFromDateTimeOffset(
_mTime
);