Esempio n. 1
0
 /// <summary>
 /// Returns whether or not the trigger is active
 ///
 /// This method will be called repeatedly a command is linked to the Trigger.
 /// </summary>
 /// <returns>Whether or not the trigger condition is active.</returns>
 public override bool Get()
 {
     return(SourceTable.IsConnected && SourceTable.GetBoolean(Field, false));
 }