6 writes to _mode
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
153
_header.
_mode
= (int)value;
System\Formats\Tar\TarHeader.cs (1)
94
_mode
= mode;
System\Formats\Tar\TarHeader.Read.cs (1)
132
_mode
= mode;
System\Formats\Tar\TarHeader.Write.cs (2)
437
_mode
= TarHelpers.GetDefaultMode(entryType),
485
_mode
= TarHelpers.GetDefaultMode(_typeFlag);
System\Formats\Tar\TarWriter.Unix.cs (1)
70
entry._header.
_mode
= status.Mode & (int)TarHelpers.ValidUnixFileModes;
4 references to _mode
System.Formats.Tar (4)
System\Formats\Tar\TarEntry.cs (1)
146
get => (UnixFileMode)(_header.
_mode
& (int)TarHelpers.ValidUnixFileModes);
System\Formats\Tar\TarHeader.cs (1)
105
: this(format, other._name, other.
_mode
, other._mTime, typeFlag)
System\Formats\Tar\TarHeader.Write.cs (2)
617
if (
_mode
> 0)
619
checksum += FormatNumeric(
_mode
, buffer.Slice(FieldLocations.Mode, FieldLengths.Mode));