29 lines
483 B
C#
29 lines
483 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*============================================================
|
|
**
|
|
** Type: System.IO.Ports.StopBits
|
|
**
|
|
** Purpose: StopBits enum type defined
|
|
**
|
|
** Date: August 2002
|
|
**
|
|
===========================================================*/
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace System.IO.Ports
|
|
{
|
|
|
|
public enum StopBits
|
|
{
|
|
None = 0,
|
|
One = 1,
|
|
Two = 2,
|
|
OnePointFive = 3
|
|
|
|
};
|
|
}
|