20 references to Fifo
System.Formats.Tar (20)
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\TarEntry.cs (3)
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> 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> 467case TarEntryType.Fifo:
System\Formats\Tar\TarEntry.Unix.cs (1)
30Debug.Assert(EntryType is TarEntryType.Fifo);
System\Formats\Tar\TarFile.cs (4)
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> 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> 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> 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>
System\Formats\Tar\TarHeader.Read.cs (2)
196case TarEntryType.Fifo: 258case TarEntryType.Fifo:
System\Formats\Tar\TarHelpers.cs (3)
330TarEntryType.Fifo or 344TarEntryType.Fifo or 362TarEntryType.Fifo or
System\Formats\Tar\TarWriter.cs (2)
208/// <item><see cref="TarEntryType.Fifo"/></item> 252/// <item><see cref="TarEntryType.Fifo"/></item>
System\Formats\Tar\TarWriter.Unix.cs (1)
34Interop.Sys.FileTypes.S_IFIFO => TarEntryType.Fifo,
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>