Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ EnableRaisingEvents

bool System.Diagnostics.Process.EnableRaisingEvents
getset

Definition at line 631 of file Process.cs.

632 {
633 get
634 {
635 return _watchForExit;
636 }
637 set
638 {
639 if (value == _watchForExit)
640 {
641 return;
642 }
643 if (Associated)
644 {
645 if (value)
646 {
648 }
649 else
650 {
652 }
653 }
655 }
656 }

Referenced by System.Diagnostics.Process.WaitForExitAsync().