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:
authorAtsushi Eno <atsushieno@gmail.com>2007-08-06 09:40:47 +0400
committerAtsushi Eno <atsushieno@gmail.com>2007-08-06 09:40:47 +0400
commitbc1aba7e9412de8031ca20cc4c694855c5047df8 (patch)
tree5f9477a6fcf774384a679c7d031553050ca984ce /mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
parent8bd82a1a193e218173bfb2beeafb050d9d59e9b6 (diff)
2007-08-06 Atsushi Enomoto <atsushi@ximian.com>
* PerformanceCounterInstanceLifetime.cs PerformanceCounterCategoryType.cs : new. * ICollectData.cs ProcessStartInfo.cs InstanceDataCollectionCollection.cs PerformanceCounter.cs InstanceDataCollection.cs Process.cs : cosmetic attributes cleanup. * System.dll.sources : added PerformanceCounterInstanceLifetime.cs and PerformanceCounterCategoryType.cs. svn path=/trunk/mcs/; revision=83517
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ProcessStartInfo.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/ProcessStartInfo.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
index 621b99041f9..76f359f2d35 100644
--- a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
+++ b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
@@ -74,6 +74,9 @@ namespace System.Diagnostics
[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);
@@ -85,6 +88,9 @@ namespace System.Diagnostics
[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);
@@ -98,6 +104,9 @@ namespace System.Diagnostics
[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) {
@@ -116,6 +125,9 @@ namespace System.Diagnostics
[DefaultValue (false)]
[MonitoringDescription ("Thread shows dialogboxes for errors.")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#endif
public bool ErrorDialog {
get {
return(error_dialog);
@@ -139,6 +151,9 @@ namespace System.Diagnostics
[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);
@@ -150,6 +165,9 @@ namespace System.Diagnostics
[DefaultValue (false)]
[MonitoringDescription ("Errors of this process are redirected.")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#endif
public bool RedirectStandardError {
get {
return(redirect_standard_error);
@@ -161,6 +179,9 @@ namespace System.Diagnostics
[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);
@@ -172,6 +193,9 @@ namespace System.Diagnostics
[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);
@@ -183,6 +207,9 @@ namespace System.Diagnostics
[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);
@@ -195,6 +222,9 @@ namespace System.Diagnostics
[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);
@@ -214,6 +244,9 @@ namespace System.Diagnostics
[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);
@@ -227,6 +260,9 @@ namespace System.Diagnostics
[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);