void IBMDSwitcherInputAuxCallback.Notify(_BMDSwitcherInputAuxEventType eventType)
 {
     this._switcherInputAuxEventArgs = new SwitcherInputAuxEventArgs();
     switch (eventType)
     {
     case _BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged:
         this.SwitcherInputAuxEventTypeInputSourceChanged?.Invoke(this, this._switcherInputAuxEventArgs);
         break;
     }
 }
 void IBMDSwitcherInputAuxCallback.Notify(_BMDSwitcherInputAuxEventType eventType)
 {
     switch (eventType)
     {
     case _BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged:
         if (AuxSourceChanged != null)
         {
             AuxSourceChanged(this, null);
         }
         break;
     }
 }
Esempio n. 3
0
        public void Notify(_BMDSwitcherInputAuxEventType eventType)
        {
            switch (eventType)
            {
            case _BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged:
                OnAuxInputChanged?.Invoke(this, null);
                break;

            default:
                break;
            }
        }
Esempio n. 4
0
 void IBMDSwitcherInputAuxCallback.Notify(_BMDSwitcherInputAuxEventType eventType)
 {
     switch (eventType)
     {
     case _BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged:
         InvokeHelper.Invoke(() =>
         {
             ApiAuxOutput.GetInputSource(out long sourceId);
             SourceId = sourceId;
         });
         break;
     }
 }
Esempio n. 5
0
 void IBMDSwitcherInputAuxCallback.Notify(_BMDSwitcherInputAuxEventType EventType)
 {
     switch (EventType)
     {
         case (_BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged):
             if (InputSourceChanged != null)
                 InputSourceChanged(this, null);
             break;
     }
 }
Esempio n. 6
0
 void IBMDSwitcherInputAuxCallback.Notify(_BMDSwitcherInputAuxEventType eventType)
 {
     switch (eventType)
     {
         case _BMDSwitcherInputAuxEventType.bmdSwitcherInputAuxEventTypeInputSourceChanged:
             if (AuxSourceChanged != null)
                 AuxSourceChanged(this, null);
             break;
     }
 }