Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDick Porter <dick@acm.org>2002-04-04 10:45:59 +0400
committerDick Porter <dick@acm.org>2002-04-04 10:45:59 +0400
commit7e3b1b7b4cedf5dd61689a26c2c751e969e18bfe (patch)
tree139ac629e6d93ac5d1f4f52a535607dfc3fc5749 /mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
parent226c94055698fe579205f45c6ce9f61b7e4e5d12 (diff)
2002-04-04 Dick Porter <dick@ximian.com>
* ISynchronizeInvoke.cs: Needed by Process 2002-04-04 Dick Porter <dick@ximian.com> * ThreadWaitReason.cs: * ThreadState.cs: * ThreadPriorityLevel.cs: * ProcessWindowStyle.cs: * ProcessThreadCollection.cs * ProcessThread.cs: * ProcessStartInfo.cs: * ProcessModuleCollection.cs: Stub out more classes needed for Process svn path=/trunk/mcs/; revision=3605
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ProcessStartInfo.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/ProcessStartInfo.cs148
1 files changed, 148 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
new file mode 100755
index 00000000000..28065dbec91
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
@@ -0,0 +1,148 @@
+//
+// System.Diagnostics.ProcessStartInfo.cs
+//
+// Authors:
+// Dick Porter (dick@ximian.com)
+//
+// (C) 2002 Ximian, Inc. http://www.ximian.com
+//
+
+using System.Collections.Specialized;
+
+namespace System.Diagnostics {
+ public class ProcessStartInfo {
+ [MonoTODO]
+ public ProcessStartInfo() {
+ }
+
+ [MonoTODO]
+ public ProcessStartInfo(string filename) {
+ }
+
+ [MonoTODO]
+ public ProcessStartInfo(string filename, string arguments) {
+ }
+
+ [MonoTODO]
+ public string Arguments {
+ get {
+ return("");
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public bool CreateNoWindow {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public StringDictionary EnvironmentVariables {
+ get {
+ return(null);
+ }
+ }
+
+ [MonoTODO]
+ public bool ErrorDialog {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public IntPtr ErrorDialogParentHandle {
+ get {
+ return((IntPtr)0);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public string FileName {
+ get {
+ return("file name");
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public bool RedirectStandardError {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public bool RedirectStandardInput {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public bool RedirectStandardOutput {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public bool UseShellExecute {
+ get {
+ return(false);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public string Verb {
+ get {
+ return("verb");
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public string[] Verbs {
+ get {
+ return(null);
+ }
+ }
+
+ [MonoTODO]
+ public ProcessWindowStyle WindowStyle {
+ get {
+ return(ProcessWindowStyle.Normal);
+ }
+ set {
+ }
+ }
+
+ [MonoTODO]
+ public string WorkingDirectory {
+ get {
+ return(".");
+ }
+ set {
+ }
+ }
+ }
+}