1 instantiation of TempFileCollection
System.CodeDom (1)
System\CodeDom\Compiler\CompilerParameters.cs (1)
63get => _tempFiles ??= new TempFileCollection();
10 references to TempFileCollection
System (1)
src\libraries\shims\System\ref\System.cs (1)
129[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.Compiler.TempFileCollection))]
System.CodeDom (9)
System\CodeDom\Compiler\CompilerParameters.cs (2)
10private TempFileCollection _tempFiles; 61public TempFileCollection TempFiles
System\CodeDom\Compiler\CompilerResults.cs (2)
13public CompilerResults(TempFileCollection tempFiles) 18public TempFileCollection TempFiles { get; set; }
System\CodeDom\Compiler\Executor.cs (5)
18public static void ExecWait(string cmd, TempFileCollection tempFiles) 24public static int ExecWaitWithCapture(IntPtr userToken, string cmd, TempFileCollection tempFiles, ref string outputName, ref string errorName) => 27public static int ExecWaitWithCapture(string cmd, string currentDir, TempFileCollection tempFiles, ref string outputName, ref string errorName) => 30public static int ExecWaitWithCapture(string cmd, TempFileCollection tempFiles, ref string outputName, ref string errorName) => 33public static int ExecWaitWithCapture(IntPtr userToken, string cmd, string currentDir, TempFileCollection tempFiles, ref string outputName, ref string errorName)