17 references to CombineNoChecks
mscorlib (17)
system\io\directory.cs (5)
1394String newFullPath = Path.CombineNoChecks(fullPath, fileName); 1395String newUserPath = Path.CombineNoChecks(userPath, fileName); 1410String mountPoint = Path.CombineNoChecks(fullPath, fileName + Path.DirectorySeparatorChar); 1429String reparsePoint = Path.CombineNoChecks(fullPath, fileName); 1448r = Win32Native.DeleteFile(Path.CombineNoChecks(fullPath, fileName));
system\io\filesystemenumerable.cs (6)
251userPathTemp = Path.CombineNoChecks(userPathTemp, searchPatternDirName); 555string tempFullPath = Path.CombineNoChecks(localSearchData.fullPath, fileName); 556string tempUserPath = Path.CombineNoChecks(localSearchData.userPath, fileName); 677=> Path.CombineNoChecks(searchData.userPath, findData.cFileName); 695string fullPath = Path.CombineNoChecks(searchData.fullPath, fileName); 724string fullPath = Path.CombineNoChecks(searchData.fullPath, fileName);
system\io\path.cs (6)
1204return CombineNoChecks(path1, path2); 1215return CombineNoChecks(CombineNoChecks(path1, path2), path3); 1227return CombineNoChecks(CombineNoChecks(CombineNoChecks(path1, path2), path3), path4);