5 writes to _format
System.Formats.Tar (5)
System\Formats\Tar\TarHeader.cs (1)
112_format = format;
System\Formats\Tar\TarHeader.Read.cs (4)
382header._format = header._typeFlag switch 435_format = TarEntryFormat.V7; 443_format = TarEntryFormat.Gnu; 451_format = TarEntryFormat.Ustar;
27 references to _format
System.Formats.Tar (27)
System\Formats\Tar\PaxTarEntry.cs (1)
91if (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.cs (3)
189if (_format == TarEntryFormat.Pax && _ea is not null) 206if (_format == TarEntryFormat.Pax && _ea is not null) 218if (_format == TarEntryFormat.Pax && _ea is not null)
System\Formats\Tar\TarHeader.Read.cs (8)
55if (header._format != TarEntryFormat.V7) 63Debug.Assert(header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax or TarEntryFormat.Gnu); 64if (header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax) 74else if (header._format == TarEntryFormat.Gnu) 380if (header._format == TarEntryFormat.Unknown) 448if (_format == TarEntryFormat.V7) 464if (_format == TarEntryFormat.V7) 470switch (_format)
System\Formats\Tar\TarHeader.Write.cs (10)
375if (_format is TarEntryFormat.V7) 495if (_format is not TarEntryFormat.Pax and not TarEntryFormat.Gnu) 553if (_format is not TarEntryFormat.Pax) 571if (_format is not TarEntryFormat.Pax) 861if (isOctalRange || _format == TarEntryFormat.Pax) 865else if (_format == TarEntryFormat.Gnu) 876throw new ArgumentException(SR.Format(SR.TarFieldTooLargeForEntryFormat, _format)); 887if (isOctalRange || _format == TarEntryFormat.Pax) 891else if (_format == TarEntryFormat.Gnu) 901throw new ArgumentException(SR.Format(SR.TarFieldTooLargeForEntryFormat, _format));
System\Formats\Tar\TarReader.cs (1)
216TarEntry entry = header._format switch
System\Formats\Tar\UstarTarEntry.cs (1)
47if (other._header._format is TarEntryFormat.Ustar or TarEntryFormat.Pax)