stdErr property
TextStreamWriter
get
stdErr
Exposes the write-only error output stream for the current script. Can be accessed only while using CScript.exe.
Implementation
_i4.TextStreamWriter get stdErr => _i3.getProperty(
this,
'StdErr',
);
set
stdErr
(TextStreamWriter value)
Implementation
set stdErr(_i4.TextStreamWriter value) {
_i3.setProperty(
this,
'StdErr',
value,
);
}