Advertisement
Guest User

Untitled

a guest
Jun 9th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. private void tmrshutdown_Tick (object sender, EventArgs e)
  2. {
  3. int num2;
  4. int num3;
  5. try {
  6. IL_00:
  7. int num = 1;
  8. MailMessage mailMessage = new MailMessage ();
  9. IL_09:
  10. num = 2;
  11. mailMessage.Subject = string.Concat (new string[] {
  12. "ShiftOS ",
  13. MyProject.Forms.HijackScreen.actualshiftversion,
  14. " - ",
  15. MyProject.Computer.Name,
  16. " Terminated ShiftOS"
  17. });
  18. IL_56:
  19. num = 3;
  20. mailMessage.To.Add ("ShiftOSGame@gmail.com");
  21. IL_69:
  22. num = 4;
  23. mailMessage.From = new MailAddress ("ShiftOSGame@gmail.com");
  24. IL_7C:
  25. num = 5;
  26. mailMessage.Body = "Detailed Log Of Session:" + Environment.NewLine + Environment.NewLine + MyProject.Forms.ShiftOSDesktop.log;
  27. IL_A8:
  28. num = 6;
  29. SmtpClient smtpClient = new SmtpClient ("smtp.gmail.com");
  30. IL_B6:
  31. num = 7;
  32. smtpClient.EnableSsl = true;
  33. IL_C0:
  34. num = 8;
  35. smtpClient.Credentials = new NetworkCredential ("ShiftOSGame@gmail.com", "archlinux13");
  36. IL_D8:
  37. num = 9;
  38. smtpClient.Port = 587;
  39. IL_E7:
  40. ProjectData.ClearProjectError ();
  41. num2 = 1;
  42. IL_EE:
  43. num = 11;
  44. if (this.testing) {
  45. goto IL_105;
  46. }
  47. IL_FA:
  48. num = 12;
  49. smtpClient.Send (mailMessage);
  50. IL_105:
  51. num = 14;
  52. MyProject.Forms.ShiftOSDesktop.Close ();
  53. IL_118:
  54. num = 15;
  55. this.Close ();
  56. IL_122:
  57. num = 16;
  58. this.tmrshutdown.Stop ();
  59. IL_131:
  60. goto IL_1CC;
  61. IL_136:
  62. int arg_13D_0 = num3 + 1;
  63. num3 = 0;
  64. @switch (ICSharpCode.Decompiler.ILAst.ILLabel[], arg_13D_0);
  65. IL_18A:
  66. goto IL_1C1;
  67. num3 = num;
  68. @switch (ICSharpCode.Decompiler.ILAst.ILLabel[], num2);
  69. IL_19E:
  70. goto IL_1C1;
  71. }
  72. object arg_1A0_0;
  73. endfilter (arg_1A0_0 is Exception & num2 != 0 & num3 == 0);
  74. IL_1C1:
  75. throw ProjectData.CreateProjectError (-2146828237);
  76. IL_1CC:
  77. if (num3 != 0) {
  78. ProjectData.ClearProjectError ();
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement