SetBit Support (not test)

This commit is contained in:
罗圣
2016-08-30 17:34:20 +08:00
parent 0ad78c06b9
commit e09eeadd80
15 changed files with 343 additions and 194 deletions

View File

@@ -18,11 +18,11 @@ namespace Modbus.Net.OPC
_baseConnector = OpcDaConnector.Instance(host);
}
public override bool CheckRight(byte[] content)
public override bool? CheckRight(byte[] content)
{
if (content != null && content.Length == 6 && Encoding.ASCII.GetString(content) == "NoData")
{
return false;
return null;
}
return base.CheckRight(content);
}