System::Diagnostics::ProcessStartInfo class
Contents
[
Hide
]ProcessStartInfo class
Describes process start parameters. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class ProcessStartInfo : public System::Object
Methods
Method | Description |
---|---|
get_Arguments() const | Gets process arguments. |
get_CreateNoWindow() const | Gets NoWindow property. |
get_EnvironmentVariables() const | Gets process environment variables. |
get_FileName() const | Gets process file name. |
get_RedirectStandardError() const | Gets RedirectStandardError property. |
get_RedirectStandardInput() const | Gets RedirectStandardInput property. |
get_RedirectStandardOutput() const | Gets RedirectStandardOutput property. |
get_UseShellExecute() const | Gets UseShellExecute property. |
get_WindowStyle() const | Gets window style. |
get_WorkingDirectory() const | Gets working directory of the process. |
ProcessStartInfo() | Creates empty start info object. |
ProcessStartInfo(const String&) | Creates start info object. |
ProcessStartInfo(const String&, const String&) | Creates start info object. |
set_Arguments(const String&) | Sets process arguments. |
set_CreateNoWindow(bool) | Sets NoWindow property. |
set_FileName(const String&) | Sets process file name. |
set_RedirectStandardError(bool) | Sets RedirectStandardError property. |
set_RedirectStandardInput(bool) | Sets RedirectStandardInput property. |
set_RedirectStandardOutput(bool) | Sets RedirectStandardOutput property. |
set_UseShellExecute(bool) | Sets UseShellExecute property. |
set_WindowStyle(ProcessWindowStyle) | Sets window style. |
set_WorkingDirectory(const String&) | Sets working directory of the process. |
See Also
- Class Object
- Namespace System::Diagnostics
- Library Aspose.PUB for C++