ProcessStartInfo.StandardErrorEncoding Property

Definition

Gets or sets the preferred encoding for error output.

public:
 property System::Text::Encoding ^ StandardErrorEncoding { System::Text::Encoding ^ get(); void set(System::Text::Encoding ^ value); };
public System.Text.Encoding? StandardErrorEncoding { get; set; }
public System.Text.Encoding StandardErrorEncoding { get; set; }
member this.StandardErrorEncoding : System.Text.Encoding with get, set
Public Property StandardErrorEncoding As Encoding

Property Value

An object that represents the preferred encoding for error output. The default is null.

Remarks

If the value of the StandardErrorEncoding property is null, the process uses the default standard error encoding for error output. The StandardErrorEncoding property must be set before the process is started. Setting this property does not guarantee that the process will use the specified encoding; the process will use only those encodings that it supports. The application should be tested to determine which encodings are supported.

Applies to