Process.setEnv

Set environemnt for the process to be started. Could be called multiple times to update environment.

  1. void setEnv(string[string] env)
    struct Process
    void
    setEnv
    (
    in string[string] env
    )
  2. void setEnv(string key, string value)

Parameters

env string[string]

associative array to update environment to run process with.

Meta