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)
134
_mode
= mode;
System\Formats\Tar\TarHeader.Write.cs (2)
469
_mode
= TarHelpers.GetDefaultMode(entryType),
521
_mode
= TarHelpers.GetDefaultMode(_typeFlag);
System\Formats\Tar\TarWriter.Unix.cs (1)
73
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)
653
if (
_mode
>= 0)
655
checksum += FormatNumeric(
_mode
, buffer.Slice(FieldLocations.Mode, FieldLengths.Mode));