Click or drag to resize

ErrorEventArgs Class

Provides data for the Error events.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    ZylSoft.SerialErrorEventArgs

Namespace: ZylSoft.Serial
Assembly: ZylSerialPort (in ZylSerialPort.dll) Version: 1.86.9206.30146
Syntax
public class ErrorEventArgs : EventArgs

The ErrorEventArgs type exposes the following members.

Constructors
 NameDescription
Public methodErrorEventArgs Constructor.
Top
Properties
 NameDescription
Public propertyValue Error mask value. This property can be one or more of the following values: Break = 0x0010 - The hardware detected a break condition. Frame = 0x0008 - The hardware detected a framing error. Overrun = 0x0002 - A character-buffer overrun has occurred. The next character is lost. RxOver = 0x0001 - An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character. RxParity = 0x0004 - The hardware detected a parity error.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
A ErrorEventArgs specifies the error mask value.
See Also