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