6 references to IsDevice
mscorlib (6)
system\io\path.cs (1)
503return LongPathHelper.Normalize(path, (uint)maxPathLength, checkInvalidCharacters: !PathInternal.IsDevice(path), expandShortPaths: expandShortPaths);
system\io\pathinternal.cs (3)
170if (IsPartiallyQualified(path) || IsDevice(path)) 330if (!AppContextSwitches.UseLegacyPathHandling && IsDevice(path)) 353int startIndex = AppContextSwitches.UseLegacyPathHandling ? 0 : IsDevice(path) ? ExtendedPathPrefix.Length : 0;
system\security\permissions\fileiopermission.cs (2)
588int startIndex = !skipPrefix ? 0 : PathInternal.IsDevice(path) ? PathInternal.DevicePrefixLength : 0; 1099if (AppContextSwitches.UseLegacyPathHandling || !PathInternal.IsDevice(fullPath))