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)
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> 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> 482case 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)
198case TarEntryType.Fifo: 260case TarEntryType.Fifo:
System\Formats\Tar\TarHelpers.cs (3)
352TarEntryType.Fifo or 366TarEntryType.Fifo or 384TarEntryType.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>