NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ProcessStartInfo Constructor

[To be supplied.]

Overload List

Default constructor. At least the FileName property must be set before starting the process.

[Visual Basic] Overloads Public Sub New()
[C#] public ProcessStartInfo();
[C++] public: ProcessStartInfo();
[JScript] public function ProcessStartInfo();

Specifies the name of the application or document that is to be started.

[Visual Basic] Overloads Public Sub New(String)
[C#] public ProcessStartInfo(String);
[C++] public: ProcessStartInfo(String*);
[JScript] public function ProcessStartInfo(String);

Specifies the name of the application that is to be started, as well as a set of command line arguments to pass to the application.

[Visual Basic] Overloads Public Sub New(String, String)
[C#] public ProcessStartInfo(String, String);
[C++] public: ProcessStartInfo(String*, String*);
[JScript] public function ProcessStartInfo(String, String);

See Also

ProcessStartInfo Class | ProcessStartInfo Members | System.Diagnostics Namespace