19 lines
439 B
C#
19 lines
439 B
C#
using System.Configuration;
|
|
|
|
namespace Modbus.Net.OPC
|
|
{
|
|
/// <summary>
|
|
/// Opc Da协议连接器
|
|
/// </summary>
|
|
public class OpcDaProtocalLinker : OpcProtocalLinker
|
|
{
|
|
public OpcDaProtocalLinker() : this(ConfigurationManager.AppSettings["OpcDaHost"])
|
|
{
|
|
}
|
|
|
|
public OpcDaProtocalLinker(string host)
|
|
{
|
|
BaseConnector = OpcDaConnector.Instance(host);
|
|
}
|
|
}
|
|
} |