29 references to SymbolicLink
System.Formats.Tar (29)
System\Formats\Tar\GnuTarEntry.cs (1)
25
/// <item>In all platforms: <see cref="TarEntryType.Directory"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.
SymbolicLink
"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\PaxTarEntry.cs (2)
30
/// <item>In all platforms: <see cref="TarEntryType.Directory"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.
SymbolicLink
"/>, <see cref="TarEntryType.RegularFile"/>.</item>
69
/// <item>In all platforms: <see cref="TarEntryType.Directory"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.
SymbolicLink
"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\TarEntry.cs (7)
119
/// When the <see cref="EntryType"/> indicates a <see cref="TarEntryType.
SymbolicLink
"/> or a <see cref="TarEntryType.HardLink"/>, this property returns the link target path of such link.
121
/// <exception cref="InvalidOperationException">The entry type is not <see cref="TarEntryType.HardLink"/> or <see cref="TarEntryType.
SymbolicLink
"/>.</exception>
129
if (_header._typeFlag is not TarEntryType.HardLink and not TarEntryType.
SymbolicLink
)
203
if (EntryType is TarEntryType.
SymbolicLink
or TarEntryType.HardLink or TarEntryType.GlobalExtendedAttributes)
237
if (EntryType is TarEntryType.
SymbolicLink
or TarEntryType.HardLink or TarEntryType.GlobalExtendedAttributes)
360
if (EntryType is TarEntryType.
SymbolicLink
)
463
case TarEntryType.
SymbolicLink
:
System\Formats\Tar\TarHeader.Read.cs (2)
200
case TarEntryType.
SymbolicLink
:
262
case TarEntryType.
SymbolicLink
:
System\Formats\Tar\TarHeader.Write.cs (2)
613
Debug.Assert(!string.IsNullOrEmpty(_linkName) ^ (_typeFlag is not TarEntryType.
SymbolicLink
and not TarEntryType.HardLink));
918
Debug.Assert(_typeFlag is TarEntryType.
SymbolicLink
or TarEntryType.HardLink);
System\Formats\Tar\TarHelpers.cs (4)
341
TarEntryType.
SymbolicLink
)
355
TarEntryType.
SymbolicLink
)
369
TarEntryType.
SymbolicLink
)
387
TarEntryType.
SymbolicLink
)
System\Formats\Tar\TarWriter.cs (7)
198
/// <item><see cref="TarEntryType.
SymbolicLink
"/></item>
211
/// <item><see cref="TarEntryType.
SymbolicLink
"/></item>
216
/// <exception cref="ArgumentException">The entry type is <see cref="TarEntryType.HardLink"/> or <see cref="TarEntryType.
SymbolicLink
"/> and the <see cref="TarEntry.LinkName"/> is <see langword="null"/> or empty.</exception>
242
/// <item><see cref="TarEntryType.
SymbolicLink
"/></item>
255
/// <item><see cref="TarEntryType.
SymbolicLink
"/></item>
260
/// <exception cref="ArgumentException">The entry type is <see cref="TarEntryType.HardLink"/> or <see cref="TarEntryType.
SymbolicLink
"/> and the <see cref="TarEntry.LinkName"/> is <see langword="null"/> or empty.</exception>
389
if (entryType is TarEntryType.HardLink or TarEntryType.
SymbolicLink
)
System\Formats\Tar\TarWriter.Unix.cs (2)
35
Interop.Sys.FileTypes.S_IFLNK => TarEntryType.
SymbolicLink
,
92
if (entry.EntryType == TarEntryType.
SymbolicLink
)
System\Formats\Tar\UstarTarEntry.cs (1)
24
/// <item>In all platforms: <see cref="TarEntryType.Directory"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.
SymbolicLink
"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\V7TarEntry.cs (1)
22
/// <remarks>When creating an instance using the <see cref="V7TarEntry(TarEntryType, string)"/> constructor, only the following entry types are supported: <see cref="TarEntryType.Directory"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.
SymbolicLink
"/> and <see cref="TarEntryType.V7RegularFile"/>.</remarks>