2016-01-28 update 1

This commit is contained in:
parallelbgls@outlook.com
2016-01-28 17:31:25 +08:00
parent fcb4432a98
commit 72c1948bbb
46 changed files with 2860 additions and 814 deletions

View File

@@ -0,0 +1,18 @@
namespace Hylasoft.Opc.Common
{
/// <summary>
/// Identifies the status of an OPC connector
/// </summary>
public enum OpcStatus
{
/// <summary>
/// The client is not connected
/// </summary>
NotConnected,
/// <summary>
/// The client is connected
/// </summary>
Connected
}
}