Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / IO / Ports / SerialErrors.cs / 1305376 / 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); } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PerformanceCounter.cs
- AttachmentCollection.cs
- WorkflowMarkupSerializationProvider.cs
- TdsValueSetter.cs
- HttpAsyncResult.cs
- ParallelDesigner.xaml.cs
- EmptyStringExpandableObjectConverter.cs
- ResourceAttributes.cs
- OdbcConnectionOpen.cs
- ShapeTypeface.cs
- LineGeometry.cs
- shaperfactoryquerycachekey.cs
- Variant.cs
- PaperSource.cs
- ReceiveDesigner.xaml.cs
- MediaElement.cs
- DataPagerFieldItem.cs
- MaskedTextBox.cs
- ChannelPoolSettings.cs
- BitmapCodecInfoInternal.cs
- IPAddressCollection.cs
- WinEventQueueItem.cs
- DataList.cs
- PixelFormats.cs
- Typeface.cs
- GlyphTypeface.cs
- WCFModelStrings.Designer.cs
- Expression.cs
- WebBrowserNavigatedEventHandler.cs
- SchemaImporterExtension.cs
- TypeConverterAttribute.cs
- EnumUnknown.cs
- LateBoundBitmapDecoder.cs
- SamlAuthenticationClaimResource.cs
- StringUtil.cs
- HttpRawResponse.cs
- FlowLayoutSettings.cs
- _NetRes.cs
- Util.cs
- UrlPath.cs
- PropertyDescriptorGridEntry.cs
- ConstructorNeedsTagAttribute.cs
- HostedHttpContext.cs
- followingquery.cs
- MarkupCompiler.cs
- XmlDataCollection.cs
- ProcessInfo.cs
- PropertyMap.cs
- NegatedCellConstant.cs
- BrushValueSerializer.cs
- DataGridState.cs
- ReadOnlyDictionary.cs
- ExpandCollapseProviderWrapper.cs
- HttpValueCollection.cs
- ProcessHostServerConfig.cs
- EventEntry.cs
- SystemResources.cs
- SynchronizationContext.cs
- ReadonlyMessageFilter.cs
- Transform3DCollection.cs
- ZipIOLocalFileDataDescriptor.cs
- ObjectDataSource.cs
- ResourcePool.cs
- AutomationEvent.cs
- DataListItem.cs
- BaseDataList.cs
- PointConverter.cs
- InvalidProgramException.cs
- CompiledQuery.cs
- ProcessRequestArgs.cs
- ConfigurationFileMap.cs
- SecurityContextSecurityTokenParameters.cs
- AdPostCacheSubstitution.cs
- NumericPagerField.cs
- ForwardPositionQuery.cs
- NativeMethods.cs
- MetadataCacheItem.cs
- SqlLiftWhereClauses.cs
- OutKeywords.cs
- MapPathBasedVirtualPathProvider.cs
- Number.cs
- RSAOAEPKeyExchangeDeformatter.cs
- AsyncPostBackErrorEventArgs.cs
- _LocalDataStore.cs
- WindowsToolbar.cs
- ExpressionBuilderCollection.cs
- BlobPersonalizationState.cs
- IgnoreDeviceFilterElementCollection.cs
- MethodBuilderInstantiation.cs
- RemotingConfigParser.cs
- BinaryNode.cs
- MessageSecurityProtocolFactory.cs
- Visitors.cs
- TableDetailsCollection.cs
- XmlDownloadManager.cs
- ElementHostPropertyMap.cs
- HttpFileCollection.cs
- SqlStatistics.cs
- Cursor.cs
- DoubleAnimationUsingKeyFrames.cs