38 references to BlockDevice
System.Formats.Tar (38)
System\Formats\Tar\GnuTarEntry.cs (1)
30
/// <item>In Unix platforms only: <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> and <see cref="TarEntryType.Fifo"/>.</item>
System\Formats\Tar\PaxTarEntry.cs (2)
29
/// <item>In Unix platforms only: <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> and <see cref="TarEntryType.Fifo"/>.</item>
52
/// <item>In Unix platforms only: <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> and <see cref="TarEntryType.Fifo"/>.</item>
System\Formats\Tar\PosixTarEntry.cs (2)
59
if (_header._typeFlag is not TarEntryType.
BlockDevice
and not TarEntryType.CharacterDevice)
86
if (_header._typeFlag is not TarEntryType.
BlockDevice
and not TarEntryType.CharacterDevice)
System\Formats\Tar\TarEntry.cs (5)
198
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
199
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para>
231
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
232
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
497
case TarEntryType.
BlockDevice
:
System\Formats\Tar\TarEntry.Unix.cs (1)
16
Debug.Assert(EntryType is TarEntryType.
BlockDevice
);
System\Formats\Tar\TarFile.cs (16)
268
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
269
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
288
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
289
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
330
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
331
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
352
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
353
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
396
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
397
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
415
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
416
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
459
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
460
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
480
/// <remarks><para>Files of type <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> or <see cref="TarEntryType.Fifo"/> can only be extracted in Unix platforms.</para>
481
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
System\Formats\Tar\TarHeader.Read.cs (3)
211
case TarEntryType.
BlockDevice
:
273
case TarEntryType.
BlockDevice
:
579
if (_typeFlag is TarEntryType.CharacterDevice or TarEntryType.
BlockDevice
)
System\Formats\Tar\TarHelpers.cs (3)
333
TarEntryType.
BlockDevice
or
347
TarEntryType.
BlockDevice
or
365
TarEntryType.
BlockDevice
or
System\Formats\Tar\TarWriter.cs (2)
239
/// <item><see cref="TarEntryType.
BlockDevice
"/></item>
287
/// <item><see cref="TarEntryType.
BlockDevice
"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
53
Interop.Sys.FileTypes.S_IFBLK => TarEntryType.
BlockDevice
,
74
if (entryType is TarEntryType.
BlockDevice
or TarEntryType.CharacterDevice)
System\Formats\Tar\UstarTarEntry.cs (1)
25
/// <item>In Unix platforms only: <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> and <see cref="TarEntryType.Fifo"/>.</item>