4 instantiations of UstarTarEntry
System.Formats.Tar (4)
System\Formats\Tar\TarReader.cs (2)
141
TarEntryFormat.Ustar => new
UstarTarEntry
(header, this),
294
TarEntryFormat.Ustar => new
UstarTarEntry
(header, this),
System\Formats\Tar\TarWriter.Unix.cs (1)
46
TarEntryFormat.Ustar => new
UstarTarEntry
(entryType, entryName),
System\Formats\Tar\UstarTarEntry.cs (1)
22
/// <remarks>When creating an instance using the <see cref="
UstarTarEntry
(TarEntryType, string)"/> constructor, only the following entry types are supported:
3 references to UstarTarEntry
System.Formats.Tar (3)
System\Formats\Tar\PosixTarEntry.cs (1)
9
/// Abstract class that represents a tar entry from an archive of a format that is based on the POSIX IEEE P1003.1 standard from 1988. This includes the formats <see cref="TarEntryFormat.Ustar"/> (represented by the <see cref="
UstarTarEntry
"/> class), <see cref="TarEntryFormat.Pax"/> (represented by the <see cref="PaxTarEntry"/> class) and <see cref="TarEntryFormat.Gnu"/> (represented by the <see cref="GnuTarEntry"/> class).
System\Formats\Tar\UstarTarEntry.cs (2)
18
/// Initializes a new <see cref="
UstarTarEntry
"/> instance with the specified entry type and entry name.
39
/// Initializes a new <see cref="
UstarTarEntry
"/> instance by converting the specified <paramref name="other"/> entry into the Ustar format.