flowcontrol.cs
来自「gsmmodem通讯/手机编程 通讯/手机编程」· CS 代码 · 共 26 行
CS
26 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Tollkuci.GsmModem
{
/// <summary>
/// Contains the possible values used to specify the flow control in the serial connection.
/// </summary>
public enum FlowControl
{
/// <summary>
/// Do not user flow control.
/// </summary>
None,
/// <summary>
/// Hardware flow control using RTS/CTS lines.
/// </summary>
Hardware,
/// <summary>
/// Software flow control using Xon/Xoff characters.
/// </summary>
Software,
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?