Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-WSL-1
QOSAMI-WSL-1
/
doc
/
docs
/
api-reference
/
csharp
/
enumerations
/
processoutputhandle.md
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
md
11 lines
211 Bytes
Rendered
Copy permalink
Copy
Raw
1
# ProcessOutputHandle
2
3
Only stdout/stderr are modeled here. Stdin is accessed through
`Process.GetInputStream()`
.
4
5
```
csharp
6
public
enum
ProcessOutputHandle
7
{
8
StandardOutput
=
1
,
9
StandardError
=
2
10
}
11
```