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

SerialSignal.cs « System.IO.Ports « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d0de93da3653b1ebebd047cdb79fe7bb4869283 (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.SerialSignal.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
{
	enum SerialSignal {
		None = 0,
		Cd = 1, // Carrier detect 
		Cts = 2, // Clear to send
		Dsr = 4, // Data set ready
		Dtr = 8, // Data terminal ready
		Rts = 16 // Request to send
	}
}

#endif