ProcessStartInfo.cs :  » 2.6.4-mono-.net-core » System.Diagnostics » System » Diagnostics » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Diagnostics 
System.Diagnostics » System » Diagnostics » ProcessStartInfo.cs
//
// System.Diagnostics.ProcessStartInfo.cs
//
// Authors:
//   Dick Porter (dick@ximian.com)
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

using Microsoft.Win32;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using System.IO;
using System.Security;
using System.Security.Permissions;
using System.Text;

namespace System.Diagnostics{
  [TypeConverter (typeof (ExpandableObjectConverter))]
  [PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
  public sealed class ProcessStartInfo 
  {
    /* keep these fields in this order and in sync with metadata/process.h */
    private string arguments = "";
    private IntPtr error_dialog_parent_handle = (IntPtr)0;
    private string filename = "";
    private string verb = "";
    private string working_directory = "";
    private ProcessStringDictionary envVars;
    private bool create_no_window = false;
    private bool error_dialog = false;
    private bool redirect_standard_error = false;
    private bool redirect_standard_input = false;
    private bool redirect_standard_output = false;
    private bool use_shell_execute = true;
    private ProcessWindowStyle window_style = ProcessWindowStyle.Normal;
    private Encoding encoding_stderr, encoding_stdout;
    private string username, domain;
#if NET_2_0
    private SecureString password;
#else
    private object password; // dummy
#endif
    private bool load_user_profile;

    public ProcessStartInfo() 
    {
    }

    public ProcessStartInfo(string filename) 
    {
      this.filename = filename;
    }

    public ProcessStartInfo(string filename, string arguments) 
    {
      this.filename = filename;
      this.arguments = arguments;
    }

    [RecommendedAsConfigurable (true), DefaultValue ("")]
    [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]

    [MonitoringDescription ("Command line agruments for this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public string Arguments {
      get {
        return(arguments);
      }
      set {
        arguments = value;
      }
    }
    
    [DefaultValue (false)]
    [MonitoringDescription ("Start this process with a new window.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool CreateNoWindow {
      get {
        return(create_no_window);
      }
      set {
        create_no_window = value;
      }
    }

    [DesignerSerializationVisibility (DesignerSerializationVisibility.Content), DefaultValue (null)]
    [Editor ("System.Diagnostics.Design.StringDictionaryEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
    [MonitoringDescription ("Environment variables used for this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public StringDictionary EnvironmentVariables {
      get {
        if (envVars == null) {
          envVars = new ProcessStringDictionary ();
          foreach (DictionaryEntry entry in Environment.GetEnvironmentVariables ())
            envVars.Add ((string) entry.Key, (string) entry.Value);
        }

        return envVars;
      }
    }
    
    internal bool HaveEnvVars {
      get { return (envVars != null); }
    }
    
    [DefaultValue (false)]
    [MonitoringDescription ("Thread shows dialogboxes for errors.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool ErrorDialog {
      get {
        return(error_dialog);
      }
      set {
        error_dialog = value;
      }
    }
    
    [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden), Browsable (false)]
    public IntPtr ErrorDialogParentHandle {
      get {
        return(error_dialog_parent_handle);
      }
      set {
        error_dialog_parent_handle = value;
      }
    }
    
    [RecommendedAsConfigurable (true), DefaultValue ("")]
    [Editor ("System.Diagnostics.Design.StartFileNameEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
    [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
    [MonitoringDescription ("The name of the resource to start this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public string FileName {
      get {
        return(filename);
      }
      set {
        filename = value;
      }
    }
    
    [DefaultValue (false)]
    [MonitoringDescription ("Errors of this process are redirected.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool RedirectStandardError {
      get {
        return(redirect_standard_error);
      }
      set {
        redirect_standard_error = value;
      }
    }
    
    [DefaultValue (false)]
    [MonitoringDescription ("Standard input of this process is redirected.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool RedirectStandardInput {
      get {
        return(redirect_standard_input);
      }
      set {
        redirect_standard_input = value;
      }
    }
    
    [DefaultValue (false)]
    [MonitoringDescription ("Standart output of this process is redirected.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool RedirectStandardOutput {
      get {
        return(redirect_standard_output);
      }
      set {
        redirect_standard_output = value;
      }
    }
    
#if NET_2_0
    public Encoding StandardErrorEncoding {
      get { return encoding_stderr; }
      set { encoding_stderr = value; }
    }

    public Encoding StandardOutputEncoding {
      get { return encoding_stdout; }
      set { encoding_stdout = value; }
    }
#endif
    
    [DefaultValue (true)]
    [MonitoringDescription ("Use the shell to start this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public bool UseShellExecute {
      get {
        return(use_shell_execute);
      }
      set {
        use_shell_execute = value;
      }
    }
    
    [DefaultValue ("")]
    [TypeConverter ("System.Diagnostics.Design.VerbConverter, " + Consts.AssemblySystem_Design)]
    [MonitoringDescription ("The verb to apply to a used document.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public string Verb {
      get {
        return(verb);
      }
      set {
        verb = value;
      }
    }

    static readonly string [] empty = new string [0];

    [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden), Browsable (false)]
    public string[] Verbs {
      get {
        string ext = filename == null | filename.Length == 0 ? 
          null : Path.GetExtension (filename);
        if (ext == null)
          return empty;

#if MONOTOUCH
        return empty;
#else

        switch (Environment.OSVersion.Platform) {
        case (PlatformID)4:
        case (PlatformID)6:
        case (PlatformID)128:
          return empty; // no verb on non-Windows
        default:
          RegistryKey rk = null, rk2 = null, rk3 = null;
          try {
            rk = Registry.ClassesRoot.OpenSubKey (ext);
            string k = rk != null ? rk.GetValue (null) as string : null;
            rk2 = k != null ? Registry.ClassesRoot.OpenSubKey (k) : null;
            rk3 = rk2 != null ? rk2.OpenSubKey ("shell") : null;
            return rk3 != null ? rk3.GetSubKeyNames () : null;
          } finally {
            if (rk3 != null)
              rk3.Close ();
            if (rk2 != null)
              rk2.Close ();
            if (rk != null)
              rk.Close ();
          }
        }
#endif
      }
    }
    
    [DefaultValue (typeof (ProcessWindowStyle), "Normal")]
    [MonitoringDescription ("The window style used to start this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public ProcessWindowStyle WindowStyle {
      get {
        return(window_style);
      }
      set {
        window_style = value;
      }
    }
    
    [RecommendedAsConfigurable (true), DefaultValue ("")]
    [Editor ("System.Diagnostics.Design.WorkingDirectoryEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
    [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
    [MonitoringDescription ("The initial directory for this process.")]
#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
#endif
    public string WorkingDirectory {
      get {
        return(working_directory);
      }
      set {
        working_directory = value == null ? String.Empty : value;
      }
    }

#if NET_2_0
    [NotifyParentPropertyAttribute (true)]
    public bool LoadUserProfile {
      get { return load_user_profile; }
      set { load_user_profile = value; }
    }

    [NotifyParentPropertyAttribute (true)]
    public string UserName {
      get { return username; }
      set { username = value; }
    }

    [NotifyParentPropertyAttribute (true)]
    public string Domain {
      get { return domain; }
      set { domain = value; }
    }

    public SecureString Password {
      get { return password; }
      set { password = value; }
    }
#endif
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.