1 //
2 // System.IO.Ports.Parity.cs
3 //
4 // Authors:
5 //	Chris Toshok (toshok@ximian.com)
6 //
7 // (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
8 //
9 
10 namespace System.IO.Ports
11 {
12 	public enum Parity
13 	{
14 		None,
15 		Odd,
16 		Even,
17 		Mark,
18 		Space
19 	}
20 }
21 
22 
23