5 writes to FileName
System (2)
services\monitoring\system\diagnosticts\PerformanceCounterLib.cs (2)
1140processStartInfo.FileName = Environment.SystemDirectory + "\\unlodctr.exe"; 1142processStartInfo.FileName = Environment.SystemDirectory + "\\lodctr.exe";
System.AddIn (1)
System\Addin\Hosting\AddInProcess.cs (1)
366addInProcess.StartInfo.FileName = _pathToAddInProcess;
System.Management (1)
Instrumentation\SchemaRegistration.cs (1)
710 processInfo.FileName = WMICapabilities.InstallationDirectory+"\\mofcomp.exe" ;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Application.cs (1)
1464currentStartInfo.FileName = Application.ExecutablePath;
8 references to FileName
System (8)
services\monitoring\system\diagnosticts\Process.cs (4)
1874if (startInfo.FileName.Length == 0) 1993StringBuilder commandLine = BuildCommandLine(startInfo.FileName, startInfo.Arguments); 2234if (startInfo.FileName.Length != 0) 2235shellExecuteInfo.lpFile = Marshal.StringToHGlobalAuto(startInfo.FileName);
services\monitoring\system\diagnosticts\ProcessStartInfo.cs (4)
66/// Default constructor. At least the <see cref='System.Diagnostics.ProcessStartInfo.FileName'/> 97/// verb will print a document specified using <see cref='System.Diagnostics.ProcessStartInfo.FileName'/>. 286/// <see cref='System.Diagnostics.ProcessStartInfo.FileName'/> property. 295string extension = Path.GetExtension(FileName);