ProcessStartInfo.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. //
  2. // System.Diagnostics.ProcessStartInfo.cs
  3. //
  4. // Authors:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Collections.Specialized;
  10. namespace System.Diagnostics {
  11. public sealed class ProcessStartInfo {
  12. [MonoTODO]
  13. public ProcessStartInfo() {
  14. }
  15. [MonoTODO]
  16. public ProcessStartInfo(string filename) {
  17. }
  18. [MonoTODO]
  19. public ProcessStartInfo(string filename, string arguments) {
  20. }
  21. [MonoTODO]
  22. public string Arguments {
  23. get {
  24. return("");
  25. }
  26. set {
  27. }
  28. }
  29. [MonoTODO]
  30. public bool CreateNoWindow {
  31. get {
  32. return(false);
  33. }
  34. set {
  35. }
  36. }
  37. [MonoTODO]
  38. public StringDictionary EnvironmentVariables {
  39. get {
  40. return(null);
  41. }
  42. }
  43. [MonoTODO]
  44. public bool ErrorDialog {
  45. get {
  46. return(false);
  47. }
  48. set {
  49. }
  50. }
  51. [MonoTODO]
  52. public IntPtr ErrorDialogParentHandle {
  53. get {
  54. return((IntPtr)0);
  55. }
  56. set {
  57. }
  58. }
  59. [MonoTODO]
  60. public string FileName {
  61. get {
  62. return("file name");
  63. }
  64. set {
  65. }
  66. }
  67. [MonoTODO]
  68. public bool RedirectStandardError {
  69. get {
  70. return(false);
  71. }
  72. set {
  73. }
  74. }
  75. [MonoTODO]
  76. public bool RedirectStandardInput {
  77. get {
  78. return(false);
  79. }
  80. set {
  81. }
  82. }
  83. [MonoTODO]
  84. public bool RedirectStandardOutput {
  85. get {
  86. return(false);
  87. }
  88. set {
  89. }
  90. }
  91. [MonoTODO]
  92. public bool UseShellExecute {
  93. get {
  94. return(false);
  95. }
  96. set {
  97. }
  98. }
  99. [MonoTODO]
  100. public string Verb {
  101. get {
  102. return("verb");
  103. }
  104. set {
  105. }
  106. }
  107. [MonoTODO]
  108. public string[] Verbs {
  109. get {
  110. return(null);
  111. }
  112. }
  113. [MonoTODO]
  114. public ProcessWindowStyle WindowStyle {
  115. get {
  116. return(ProcessWindowStyle.Normal);
  117. }
  118. set {
  119. }
  120. }
  121. [MonoTODO]
  122. public string WorkingDirectory {
  123. get {
  124. return(".");
  125. }
  126. set {
  127. }
  128. }
  129. }
  130. }