ProcessLauncherOptions
ProcessLauncherOptions
ProcessLauncherOptions
ProcessLauncherOptions
Class
Definition
Specifies the options used to launch the specified process.
public : sealed class ProcessLauncherOptions : IProcessLauncherOptionspublic sealed class ProcessLauncherOptions : IProcessLauncherOptionsPublic NotInheritable Class ProcessLauncherOptions Implements IProcessLauncherOptions// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows IoT Extension SDK (introduced v10.0.10586.0)
|
| API contract |
Windows.System.SystemManagementContract (introduced v2)
|
Constructors
ProcessLauncherOptions() ProcessLauncherOptions() ProcessLauncherOptions() ProcessLauncherOptions()
Creates and initializes a new instance of the process launcher options object.
public : ProcessLauncherOptions()public ProcessLauncherOptions()Public Sub New()// You can use this method in JavaScript.
Properties
StandardError StandardError StandardError StandardError
Specifies where a standard error is directed to.
public : IOutputStream StandardError { get; set; }public IOutputStream StandardError { get; set; }Public ReadWrite Property StandardError As IOutputStream// You can use this property in JavaScript.
The stream to direct standard errors to.
StandardInput StandardInput StandardInput StandardInput
Specifies where a standard input is coming from.
public : IInputStream StandardInput { get; set; }public IInputStream StandardInput { get; set; }Public ReadWrite Property StandardInput As IInputStream// You can use this property in JavaScript.
The input stream for standard input.
StandardOutput StandardOutput StandardOutput StandardOutput
Specifies where a standard output is directed to.
public : IOutputStream StandardOutput { get; set; }public IOutputStream StandardOutput { get; set; }Public ReadWrite Property StandardOutput As IOutputStream// You can use this property in JavaScript.
The stream to which standard output is directed.
WorkingDirectory WorkingDirectory WorkingDirectory WorkingDirectory
Gets or sets the directory the process launcher will work in.
public : PlatForm::String WorkingDirectory { get; set; }public string WorkingDirectory { get; set; }Public ReadWrite Property WorkingDirectory As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The working directory.