4 references to FILE_TYPE_PIPE
mscorlib (4)
system\io\__consolestream.cs (1)
57_isPipe = Win32Native.GetFileType(handle) == Win32Native.FILE_TYPE_PIPE;
system\io\filestream.cs (3)
1025Contract.Assert(handleType == Win32Native.FILE_TYPE_DISK || handleType == Win32Native.FILE_TYPE_PIPE || handleType == Win32Native.FILE_TYPE_CHAR, "FileStream was passed an unknown file type!"); 1035_isPipe = handleType == Win32Native.FILE_TYPE_PIPE; 1063if (handleType != Win32Native.FILE_TYPE_PIPE)