30 references to BlockDevice
System.Formats.Tar (30)
System\Formats\Tar\GnuTarEntry.cs (1)
26
/// <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)
31
/// <item>In Unix platforms only: <see cref="TarEntryType.
BlockDevice
"/>, <see cref="TarEntryType.CharacterDevice"/> and <see cref="TarEntryType.Fifo"/>.</item>
70
/// <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)
85
if (_header._typeFlag is not TarEntryType.
BlockDevice
and not TarEntryType.CharacterDevice)
System\Formats\Tar\TarEntry.cs (5)
185
/// <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>
186
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para>
217
/// <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>
218
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
474
case TarEntryType.
BlockDevice
:
System\Formats\Tar\TarEntry.Unix.cs (1)
16
Debug.Assert(EntryType is TarEntryType.
BlockDevice
);
System\Formats\Tar\TarFile.cs (8)
160
/// <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>
161
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
201
/// <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>
202
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
244
/// <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>
245
/// <para>Elevation is required to extract a <see cref="TarEntryType.
BlockDevice
"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks>
287
/// <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>
288
/// <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)
195
case TarEntryType.
BlockDevice
:
257
case TarEntryType.
BlockDevice
:
525
if (_typeFlag is TarEntryType.CharacterDevice or TarEntryType.
BlockDevice
)
System\Formats\Tar\TarHelpers.cs (3)
349
TarEntryType.
BlockDevice
or
363
TarEntryType.
BlockDevice
or
381
TarEntryType.
BlockDevice
or
System\Formats\Tar\TarWriter.cs (2)
205
/// <item><see cref="TarEntryType.
BlockDevice
"/></item>
249
/// <item><see cref="TarEntryType.
BlockDevice
"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
32
Interop.Sys.FileTypes.S_IFBLK => TarEntryType.
BlockDevice
,
52
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>