6 references to MaxLongPath
mscorlib (6)
system\io\filestream.cs (2)
712? PathInternal.MaxLongPath 713: AppContextSwitches.BlockLongPaths ? PathInternal.MaxShortPath : PathInternal.MaxLongPath;
system\io\path.cs (2)
376return NormalizePath(path, fullCheck, AppContextSwitches.BlockLongPaths ? PathInternal.MaxShortPath : PathInternal.MaxLongPath); 929internal const int MaxLongPath = PathInternal.MaxLongPath;
system\io\pathinternal.cs (1)
113return fullPath.Length >= MaxLongPath;
system\security\util\urlstring.cs (1)
461if (path.Length >= (AppContextSwitches.BlockLongPaths ? PathInternal.MaxShortPath : PathInternal.MaxLongPath))