You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
546 B
25 lines
546 B
namespace Mirle.Component.MPLC.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// MIRLE PLC 連線介面
|
|
/// </summary>
|
|
public interface IConnectable
|
|
{
|
|
/// <summary>
|
|
/// 關閉連線
|
|
/// </summary>
|
|
void Close();
|
|
/// <summary>
|
|
/// 開啟連線
|
|
/// </summary>
|
|
bool Connect();
|
|
/// <summary>
|
|
/// 重新連線
|
|
/// </summary>
|
|
bool ReConnect();
|
|
/// <summary>
|
|
/// 測試連線
|
|
/// </summary>
|
|
bool TestConnection();
|
|
}
|
|
}
|