SerialErrors.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Sys / System / IO / Ports / SerialErrors.cs / 1 / SerialErrors.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Type: SerialError 
**
** Purpose: Describes the types of serial port errors. 
**
** Date:  August 2002
**
** 
===========================================================*/
 
using Microsoft.Win32; 

namespace System.IO.Ports 
{
    public enum SerialError {
        TXFull = NativeMethods.CE_TXFULL,
        RXOver = NativeMethods.CE_RXOVER, 
        Overrun = NativeMethods.CE_OVERRUN,
        RXParity = NativeMethods.CE_PARITY, 
        Frame = NativeMethods.CE_FRAME, 
    }
 
    public class SerialErrorReceivedEventArgs : EventArgs {
        private SerialError errorType;

        internal SerialErrorReceivedEventArgs(SerialError eventCode) { 
            errorType = eventCode;
        } 
 
        public SerialError EventType {
            get { return errorType; } 
        }
    }

    public delegate void SerialErrorReceivedEventHandler(object sender, SerialErrorReceivedEventArgs e); 
}
 


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK