4 instantiations of GnuTarEntry
System.Formats.Tar (4)
System\Formats\Tar\GnuTarEntry.cs (1)
23
/// <remarks>When creating an instance using the <see cref="
GnuTarEntry
(TarEntryType, string)"/> constructor, only the following entry types are supported:
System\Formats\Tar\TarReader.cs (2)
140
TarEntryFormat.Gnu => new
GnuTarEntry
(header, this),
293
TarEntryFormat.Gnu => new
GnuTarEntry
(header, this),
System\Formats\Tar\TarWriter.Unix.cs (1)
48
TarEntryFormat.Gnu => new
GnuTarEntry
(entryType, entryName),
5 references to GnuTarEntry
System.Formats.Tar (5)
System\Formats\Tar\GnuTarEntry.cs (3)
19
/// Initializes a new <see cref="
GnuTarEntry
"/> instance with the specified entry type and entry name.
41
/// Initializes a new <see cref="
GnuTarEntry
"/> instance by converting the specified <paramref name="other"/> entry into the GNU format.
49
if (other is
GnuTarEntry
gnuOther)
System\Formats\Tar\PaxTarEntry.cs (1)
123
if (other is
GnuTarEntry
gnuOther)
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).