| File: src\runtime\src\libraries\Common\src\Interop\Unix\System.Native\Interop.Read.cs | Web Access |
| Project: src\runtime\src\libraries\System.Console\src\System.Console.csproj (System.Console) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Sys { /// <summary> /// Reads a number of bytes from an open file descriptor into a specified buffer. /// </summary> /// <param name="fd">The open file descriptor to try to read from</param> /// <param name="buffer">The buffer to read info into</param> /// <param name="count">The size of the buffer</param> /// <returns> /// Returns the number of bytes read on success; otherwise, -1 is returned /// Note - on fail. the position of the stream may change depending on the platform; consult man 2 read for more info /// </returns> [LibraryImport(Libraries.SystemNative, EntryPoint = "SystemNative_Read", SetLastError = true)] internal static unsafe partial int Read(SafeHandle fd, byte* buffer, int count); [LibraryImport(Libraries.SystemNative, EntryPoint = "SystemNative_ReadFromNonblocking", SetLastError = true)] internal static unsafe partial int ReadFromNonblocking(SafeHandle fd, byte* buffer, int count); } }