15 references to ExtendedAttributes
System.Formats.Tar (15)
System\Formats\Tar\TarEntry.cs (1)
471case TarEntryType.ExtendedAttributes:
System\Formats\Tar\TarHeader.Read.cs (3)
187case TarEntryType.ExtendedAttributes or TarEntryType.GlobalExtendedAttributes: 249case TarEntryType.ExtendedAttributes or TarEntryType.GlobalExtendedAttributes: 402TarEntryType.ExtendedAttributes or
System\Formats\Tar\TarHeader.Write.cs (2)
476_typeFlag = isGea ? TarEntryType.GlobalExtendedAttributes : TarEntryType.ExtendedAttributes; 635Debug.Assert(_typeFlag is not TarEntryType.ExtendedAttributes and not TarEntryType.GlobalExtendedAttributes);
System\Formats\Tar\TarReader.cs (9)
331if (header._typeFlag is TarEntryType.ExtendedAttributes) 372if (header._typeFlag is TarEntryType.ExtendedAttributes) 410TarEntryType.ExtendedAttributes or 414throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, actualHeader._typeFlag, TarEntryType.ExtendedAttributes)); 442TarEntryType.ExtendedAttributes or 446throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, actualHeader._typeFlag, TarEntryType.ExtendedAttributes)); 450if (actualHeader._typeFlag is TarEntryType.ExtendedAttributes) 452throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, TarEntryType.ExtendedAttributes, TarEntryType.ExtendedAttributes));