stdOut property

TextStreamWriter get stdOut

Exposes the write-only output stream for the current script. Can be accessed only while using CScript.exe.

Implementation

_i4.TextStreamWriter get stdOut => _i3.getProperty(
      this,
      'StdOut',
    );
set stdOut (TextStreamWriter value)

Implementation

set stdOut(_i4.TextStreamWriter value) {
  _i3.setProperty(
    this,
    'StdOut',
    value,
  );
}