stdIn property

TextStreamReader get stdIn

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

Implementation

_i4.TextStreamReader get stdIn => _i3.getProperty(
      this,
      'StdIn',
    );
set stdIn (TextStreamReader value)

Implementation

set stdIn(_i4.TextStreamReader value) {
  _i3.setProperty(
    this,
    'StdIn',
    value,
  );
}