Made the event trigger private and removed it from the interface
This commit is contained in:
Trevor Payne
2020-11-02 09:59:22 -06:00
parent 5fcafe0b38
commit e27c041256
14 changed files with 14 additions and 14 deletions

View File

@@ -63,7 +63,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
/// </summary>
/// <param name="e">Arguments defined as IKeyName sender, output, input, and eRoutingSignalType</param>
public void OnSwitchChange(RoutingNumericEventArgs e)
private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}