a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
395 B
C#
25 lines
395 B
C#
/* -*- Mode: Csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
namespace System.IO.Ports
|
|
{
|
|
public class SerialErrorReceivedEventArgs : EventArgs
|
|
{
|
|
|
|
internal SerialErrorReceivedEventArgs (SerialError eventType)
|
|
{
|
|
this.eventType = eventType;
|
|
}
|
|
|
|
// properties
|
|
|
|
public SerialError EventType {
|
|
get {
|
|
return eventType;
|
|
}
|
|
}
|
|
|
|
SerialError eventType;
|
|
}
|
|
}
|
|
|