File: System\IO\Ports\SerialData.cs | Web Access |
Project: src\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. namespace System.IO.Ports { public enum SerialData { // EV_RXCHAR Chars = 0x01, // EV_RXFLAG Eof = 0x02 } } |