Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
StandardError
StreamReader
System.Diagnostics.Process.StandardError
get
Definition at line
693
of file
Process.cs
.
694
{
695
get
696
{
697
CheckDisposed
();
698
if
(
_standardError
==
null
)
699
{
700
throw
new
InvalidOperationException
(
System
.
SR
.
CantGetStandardError
);
701
}
702
if
(
_errorStreamReadMode
== StreamReadMode.Undefined)
703
{
704
_errorStreamReadMode
= StreamReadMode.SyncMode;
705
}
706
else
if
(
_errorStreamReadMode
!= StreamReadMode.SyncMode)
707
{
708
throw
new
InvalidOperationException
(
System
.
SR
.
CantMixSyncAsyncOperation
);
709
}
710
return
_standardError
;
711
}
712
}
System.Diagnostics.Process.CheckDisposed
void CheckDisposed()
Definition
Process.cs:1512
System.Diagnostics.Process._standardError
StreamReader _standardError
Definition
Process.cs:156
System.Diagnostics.Process._errorStreamReadMode
StreamReadMode _errorStreamReadMode
Definition
Process.cs:164
System.SR.CantMixSyncAsyncOperation
static string CantMixSyncAsyncOperation
Definition
SR.cs:72
System.SR.CantGetStandardError
static string CantGetStandardError
Definition
SR.cs:70
System.SR
Definition
SR.cs:7
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System
Definition
BlockingCollection.cs:8
System
Diagnostics
Process
Generated by
1.10.0