| File: System\IO\Ports\InternalResources.cs | Web Access |
| Project: src\runtime\src\libraries\System.IO.Ports\src\System.IO.Ports.csproj (System.IO.Ports) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; using Marshal = System.Runtime.InteropServices.Marshal; namespace System.IO.Ports { internal static partial class InternalResources { // Beginning of static Error methods internal static void EndOfFile() { throw new EndOfStreamException(SR.IO_EOF_ReadBeyondEOF); } internal static string GetMessage(int errorCode) { return new Win32Exception(errorCode).Message; } internal static Exception FileNotOpenException() { return new ObjectDisposedException(null, SR.Port_not_open); } internal static void FileNotOpen() { throw FileNotOpenException(); } internal static void WrongAsyncResult() { throw new ArgumentException(SR.Arg_WrongAsyncResult); } internal static void EndReadCalledTwice() { // Should ideally be InvalidOperationExc but we can't maintain parity with Stream and SerialStream without some work throw new ArgumentException(SR.InvalidOperation_EndReadCalledMultiple); } internal static void EndWriteCalledTwice() { // Should ideally be InvalidOperationExc but we can't maintain parity with Stream and SerialStream without some work throw new ArgumentException(SR.InvalidOperation_EndWriteCalledMultiple); } } }