// 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 Parity { None = 0, Odd = 1, Even = 2, Mark = 3, Space = 4 }; }