diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingInterfaces.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingInterfaces.cs
index c70743e1..8f87ae87 100644
--- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingInterfaces.cs
+++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingInterfaces.cs
@@ -139,7 +139,7 @@ namespace PepperDash.Essentials.Core
public interface IRoutingNumericFeedback : IKeyName
{
event EventHandler NumericSwitchChange;
- void OnSwitchChange(RoutingNumericEventArgs e);
+ //void OnSwitchChange(RoutingNumericEventArgs e);
}
///
diff --git a/essentials-framework/Essentials DM/Essentials_DM/AirMedia/AirMediaController.cs b/essentials-framework/Essentials DM/Essentials_DM/AirMedia/AirMediaController.cs
index 116a4af0..4e987def 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/AirMedia/AirMediaController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/AirMedia/AirMediaController.cs
@@ -160,7 +160,7 @@ namespace PepperDash.Essentials.DM.AirMedia
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs
index 65cfd50a..aa6c61a9 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs
@@ -914,7 +914,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmpsRoutingController.cs b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmpsRoutingController.cs
index 3db892ac..c8dc3f4a 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmpsRoutingController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmpsRoutingController.cs
@@ -63,7 +63,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Chassis/HdMdNxM4kEBridgeableController.cs b/essentials-framework/Essentials DM/Essentials_DM/Chassis/HdMdNxM4kEBridgeableController.cs
index 75f8f73b..da9cb669 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Chassis/HdMdNxM4kEBridgeableController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Chassis/HdMdNxM4kEBridgeableController.cs
@@ -109,7 +109,7 @@ namespace PepperDash.Essentials.DM.Chassis
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Receivers/DmRmc4kZScalerCController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Receivers/DmRmc4kZScalerCController.cs
index db9f5012..ddecb39c 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Receivers/DmRmc4kZScalerCController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Receivers/DmRmc4kZScalerCController.cs
@@ -38,7 +38,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx200Controller.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx200Controller.cs
index ab4396d5..70160bb3 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx200Controller.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx200Controller.cs
@@ -44,7 +44,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201CController.cs
index d39d2eb6..eb1750a2 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201CController.cs
@@ -43,7 +43,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201SController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201SController.cs
index bfd3a890..69095313 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201SController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx201SController.cs
@@ -43,7 +43,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs
index 03fcafa5..69da4b4b 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs
@@ -50,7 +50,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k202CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k202CController.cs
index c2d6c09c..7bed7eb8 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k202CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k202CController.cs
@@ -46,7 +46,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k302CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k302CController.cs
index e719fc28..758bc056 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k302CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4k302CController.cs
@@ -53,7 +53,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz202CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz202CController.cs
index 2f0ac6ef..4f41ce8d 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz202CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz202CController.cs
@@ -42,7 +42,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}
diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz302CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz302CController.cs
index 5dd8d6cb..7b5d9a65 100644
--- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz302CController.cs
+++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx4kz302CController.cs
@@ -47,7 +47,7 @@ namespace PepperDash.Essentials.DM
/// Raise an event when the status of a switch object changes.
///
/// Arguments defined as IKeyName sender, output, input, and eRoutingSignalType
- public void OnSwitchChange(RoutingNumericEventArgs e)
+ private void OnSwitchChange(RoutingNumericEventArgs e)
{
if (NumericSwitchChange != null) NumericSwitchChange(this, e);
}