IPricePoleEvents.cs 834 B

12345678910111213141516171819202122232425262728
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/IPricePoleEvents.cs $
  4. *
  5. * 1 07-03-09 15:34 roger.månsson
  6. * Created.
  7. */
  8. #endregion
  9. using System.Runtime.InteropServices;
  10. namespace Wayne.ForecourtControl.Com
  11. {
  12. /// <summary>
  13. /// Event interface for an IPricePole class.
  14. /// </summary>
  15. [ComVisible(true)]
  16. [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
  17. public interface IPricePoleEvents
  18. {
  19. /// <summary>
  20. /// Connection state of the Price pole has changed.
  21. /// </summary>
  22. /// <param name="sender"></param>
  23. /// <param name="connectionState"></param>
  24. void OnConnectionStateChange(IPricePole sender, DeviceConnectionState connectionState);
  25. }
  26. }