NativeArgumentPassingStyle Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the different native command argument parsing options.
public enum NativeArgumentPassingStyle
type NativeArgumentPassingStyle =
Public Enum NativeArgumentPassingStyle
- Inheritance
-
NativeArgumentPassingStyle
Fields
Name | Value | Description |
---|---|---|
Legacy | 0 | Use legacy argument parsing via ProcessStartInfo.Arguments. |
Standard | 1 | Use new style argument passing via ProcessStartInfo.ArgumentList. |
Windows | 2 | Use specific to Windows passing style which is Legacy for selected files on Windows, but Standard for everything else. This is the default behavior for Windows. |