コード例 #1
0
 private void Print(Binary value, UInt16 index)
 {
     Console.WriteLine(_scadaDev.Name + ": Binary[" + index + "] " + value.ToString());
 }
コード例 #2
0
 private static void Print(Binary value, UInt16 index)
 {
     Console.WriteLine("Binary[" + index + "] " + value.ToString());                         
 }
コード例 #3
0
ファイル: ChangeSet.cs プロジェクト: bkearns/dnp3
 public void Update(Binary update, ushort index, EventMode mode = EventMode.Detect)
 {
     updates.Add((IDatabase db) => db.Update(update, index, mode));
 }