Untitled
unknown
plain_text
3 years ago
614 B
11
Indexable
public async Task<bool> MethodSecret(GXDLMSObject it, int num, byte[] pass)
{
bool result = false;
if (status == EnumStatus.CONNECTED)
{
await System.Threading.Tasks.Task.Run(() =>
{
status = EnumStatus.ACTION;
result = reader.Method(it, num, pass, DataType.OctetString);
status = EnumStatus.CONNECTED;
//ReadDone();
});
}
return result;
}
await drv.MethodSecret(_configAccess, 2, pass);Editor is loading...