PollingTimer.cs 429 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace UAS_PLCDataReader.PublicMethod
  6. {
  7. class PollingTimer : System.Timers.Timer
  8. {
  9. private object polling;
  10. public object Polling
  11. {
  12. get
  13. {
  14. return polling;
  15. }
  16. set
  17. {
  18. polling = value;
  19. }
  20. }
  21. }
  22. }