ZeroTierOneService.Designer.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. namespace Service
  2. {
  3. partial class ZeroTierOneService
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Component Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.zeroTierProcess = new System.Diagnostics.Process();
  30. this.checkForUpdatesTimer = new System.Windows.Forms.Timer(this.components);
  31. //
  32. // zeroTierProcess
  33. //
  34. this.zeroTierProcess.EnableRaisingEvents = true;
  35. this.zeroTierProcess.StartInfo.CreateNoWindow = true;
  36. this.zeroTierProcess.StartInfo.Domain = "";
  37. this.zeroTierProcess.StartInfo.LoadUserProfile = false;
  38. this.zeroTierProcess.StartInfo.Password = null;
  39. this.zeroTierProcess.StartInfo.RedirectStandardError = true;
  40. this.zeroTierProcess.StartInfo.RedirectStandardInput = true;
  41. this.zeroTierProcess.StartInfo.RedirectStandardOutput = true;
  42. this.zeroTierProcess.StartInfo.StandardErrorEncoding = null;
  43. this.zeroTierProcess.StartInfo.StandardOutputEncoding = null;
  44. this.zeroTierProcess.StartInfo.UserName = "";
  45. this.zeroTierProcess.StartInfo.UseShellExecute = false;
  46. this.zeroTierProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
  47. this.zeroTierProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(this.zeroTierProcess_OutputDataReceived);
  48. this.zeroTierProcess.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler(this.zeroTierProcess_ErrorDataReceived);
  49. this.zeroTierProcess.Exited += new System.EventHandler(this.zeroTierProcess_Exited);
  50. //
  51. // checkForUpdatesTimer
  52. //
  53. this.checkForUpdatesTimer.Enabled = true;
  54. this.checkForUpdatesTimer.Interval = 3600000;
  55. this.checkForUpdatesTimer.Tick += new System.EventHandler(this.checkForUpdatesTimer_Tick);
  56. //
  57. // ZeroTierOneService
  58. //
  59. this.ServiceName = "ZeroTier One";
  60. }
  61. #endregion
  62. private System.Diagnostics.Process zeroTierProcess;
  63. private System.Windows.Forms.Timer checkForUpdatesTimer;
  64. }
  65. }