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)
70entry._header._mode = status.Mode & (int)TarHelpers.ValidUnixFileModes;
4 references to _mode
System.Formats.Tar (4)
System\Formats\Tar\TarEntry.cs (1)
146get => (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)
617if (_mode > 0) 619checksum += FormatNumeric(_mode, buffer.Slice(FieldLocations.Mode, FieldLengths.Mode));