30 references to CharacterDevice
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>
478
case TarEntryType.
CharacterDevice
:
System\Formats\Tar\TarEntry.Unix.cs (1)
23
Debug.Assert(EntryType is TarEntryType.
CharacterDevice
);
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)
196
case TarEntryType.
CharacterDevice
:
258
case TarEntryType.
CharacterDevice
:
525
if (_typeFlag is TarEntryType.
CharacterDevice
or TarEntryType.BlockDevice)
System\Formats\Tar\TarHelpers.cs (3)
350
TarEntryType.
CharacterDevice
or
364
TarEntryType.
CharacterDevice
or
382
TarEntryType.
CharacterDevice
or
System\Formats\Tar\TarWriter.cs (2)
206
/// <item><see cref="TarEntryType.
CharacterDevice
"/></item>
250
/// <item><see cref="TarEntryType.
CharacterDevice
"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
33
Interop.Sys.FileTypes.S_IFCHR => TarEntryType.
CharacterDevice
,
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>