using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;
namespace FLY.Modbus
{
///
/// 异常有异常事件
///
public interface IModbusClient
{
///
/// 读多个 COIL
///
///
///
///
///
///
ModbusClient_Errno Do_01(UInt16 addr, UInt16 cnt, Action AsyncDelegate, object AsyncState);
///
/// 读多个Holding REGs
///
///
///
///
///
///
ModbusClient_Errno Do_03(UInt16 addr, UInt16 cnt, Action AsyncDelegate, object AsyncState);
///
/// Write Single Coil
///
///
///
///
ModbusClient_Errno Do_05(UInt16 addr, bool data);
///
/// Write Single Coil,带返回
///
///
///
///
///
///
ModbusClient_Errno Do_05(UInt16 addr, bool data, Action