2014-08-27 update 2 Rename Class
This commit is contained in:
16
NA200H/ModBus.Net/BaseConnector.cs
Normal file
16
NA200H/ModBus.Net/BaseConnector.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ModBus.Net
|
||||
{
|
||||
public abstract class BaseConnector
|
||||
{
|
||||
public abstract bool Connect();
|
||||
public abstract bool Disconnect();
|
||||
public abstract bool SendMsgWithoutReturn(byte[] message);
|
||||
public abstract byte[] SendMsg(byte[] message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user