5 writes to _format
System.Formats.Tar (5)
System\Formats\Tar\TarHeader.cs (1)
88_format = format;
System\Formats\Tar\TarHeader.Read.cs (4)
422header._format = header._typeFlag switch 475_format = TarEntryFormat.V7; 483_format = TarEntryFormat.Gnu; 491_format = TarEntryFormat.Ustar;
25 references to _format
System.Formats.Tar (25)
System\Formats\Tar\PaxTarEntry.cs (1)
86if (other._header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax)
System\Formats\Tar\TarEntry.cs (3)
24protected bool FormatIsOctalOnly => _header._format is TarEntryFormat.V7 or TarEntryFormat.Ustar; 31Debug.Assert(header._format == format); 82public TarEntryFormat Format => _header._format;
System\Formats\Tar\TarHeader.Read.cs (8)
71if (header._format != TarEntryFormat.V7) 79Debug.Assert(header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax or TarEntryFormat.Gnu); 80if (header._format == TarEntryFormat.Ustar) 84else if (header._format == TarEntryFormat.Gnu) 420if (header._format == TarEntryFormat.Unknown) 488if (_format == TarEntryFormat.V7) 504if (_format == TarEntryFormat.V7) 510switch (_format)
System\Formats\Tar\TarHeader.Write.cs (10)
564if (_format is TarEntryFormat.V7) 684if (_format is not TarEntryFormat.Pax and not TarEntryFormat.Gnu) 742if (_format is not TarEntryFormat.Pax) 760if (_format is not TarEntryFormat.Pax) 1136if (isOctalRange || _format == TarEntryFormat.Pax) 1140else if (_format == TarEntryFormat.Gnu) 1151throw new ArgumentException(SR.Format(SR.TarFieldTooLargeForEntryFormat, _format)); 1162if (isOctalRange || _format == TarEntryFormat.Pax) 1166else if (_format == TarEntryFormat.Gnu) 1176throw new ArgumentException(SR.Format(SR.TarFieldTooLargeForEntryFormat, _format));
System\Formats\Tar\TarReader.cs (2)
136TarEntry entry = header._format switch 271TarEntry entry = header._format switch
System\Formats\Tar\UstarTarEntry.cs (1)
47if (other._header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax)