Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SerialPinChange.cs « System.IO.Ports « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbb735aea6f377eb51cb49892a0978b8f759a32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// System.IO.Ports.SerialPinChange.cs
//
// Authors:
//	Carlos Alberto Cortez (calberto.cortez@gmail.com)
//
// (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
//

#if NET_2_0

namespace System.IO.Ports 
{
	public enum SerialPinChange 
	{
		CtsChanged = 8,
		DsrChanged = 16,
		CDChanged = 32,
		Break = 64,
		Ring = 256
	} 
}

#endif