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)
59if (_header._typeFlag is not TarEntryType.BlockDevice and not TarEntryType.CharacterDevice) 82if (_header._typeFlag is not TarEntryType.BlockDevice and not TarEntryType.CharacterDevice)
System\Formats\Tar\TarEntry.cs (5)
179/// <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> 180/// <para>Elevation is required to extract a <see cref="TarEntryType.BlockDevice"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para> 211/// <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> 212/// <para>Elevation is required to extract a <see cref="TarEntryType.BlockDevice"/> or <see cref="TarEntryType.CharacterDevice"/> to disk.</para></remarks> 459case TarEntryType.BlockDevice:
System\Formats\Tar\TarEntry.Unix.cs (1)
16Debug.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)
193case TarEntryType.BlockDevice: 255case TarEntryType.BlockDevice: 524if (_typeFlag is TarEntryType.CharacterDevice or TarEntryType.BlockDevice)
System\Formats\Tar\TarHelpers.cs (3)
327TarEntryType.BlockDevice or 341TarEntryType.BlockDevice or 359TarEntryType.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)
32Interop.Sys.FileTypes.S_IFBLK => TarEntryType.BlockDevice, 52if (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>