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)
87entry._header._mTime = TarHelpers.GetDateTimeOffsetFromSecondsSinceEpoch(status.MTime);
4 references to _mTime
System.Formats.Tar (4)
System\Formats\Tar\TarEntry.cs (1)
105get => _header._mTime;
System\Formats\Tar\TarHeader.cs (2)
122: this(format, other._name, other._mode, other._mTime, typeFlag) 249ea[PaxEaMTime] = TarHelpers.GetTimestampStringFromDateTimeOffset(_mTime);
System\Formats\Tar\TarHeader.Write.cs (1)
672checksum += WriteAsTimestamp(_mTime, buffer.Slice(FieldLocations.MTime, FieldLengths.MTime));