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

◆ StartInfo

ProcessStartInfo System.Diagnostics.Process.StartInfo
getset

Definition at line 555 of file Process.cs.

556 {
557 get
558 {
559 if (_startInfo == null)
560 {
561 if (Associated)
562 {
564 }
565 _startInfo = new ProcessStartInfo();
566 }
567 return _startInfo;
568 }
569 set
570 {
571 if (value == null)
572 {
573 throw new ArgumentNullException("value");
574 }
575 if (Associated)
576 {
578 }
580 }
581 }
ProcessStartInfo _startInfo
Definition Process.cs:124
static string CantGetProcessStartInfo
Definition SR.cs:86
static string CantSetProcessStartInfo
Definition SR.cs:88
Definition SR.cs:7

Referenced by Terraria.Social.Steam.NetClientSocialModule.LaunchLocalServer(), and System.Diagnostics.Process.Start().