19 references to MAX_PATH
mscorlib (19)
system\environment.cs (7)
411
StringBuilder sb = new StringBuilder(Path.
MAX_PATH
);
412
int r = Win32Native.GetSystemDirectory(sb, Path.
MAX_PATH
);
413
Contract.Assert(r < Path.
MAX_PATH
, "r < Path.MAX_PATH");
434
StringBuilder sb = new StringBuilder(Path.
MAX_PATH
);
435
int r = Win32Native.GetWindowsDirectory(sb, Path.
MAX_PATH
);
436
Contract.Assert(r < Path.
MAX_PATH
, "r < Path.MAX_PATH");
1505
StringBuilder sb = new StringBuilder(Path.
MAX_PATH
);
system\io\path.cs (3)
1065
StringBuilder sb = new StringBuilder(
MAX_PATH
);
1066
uint r = Win32Native.GetTempPath(
MAX_PATH
, sb);
1151
StringBuilder sb = new StringBuilder(
MAX_PATH
);
system\reflection\assembly.cs (1)
3074
Path.
MAX_PATH
);
system\runtime\interopservices\runtimeenvironment.cs (1)
116
StringBuilder sb = new StringBuilder(Path.
MAX_PATH
);
system\runtime\interopservices\typelibconverter.cs (1)
104
if (asmFileName.Length > Path.
MAX_PATH
)
system\threading\eventwaithandle.cs (3)
59
if(null != name && System.IO.Path.
MAX_PATH
< name.Length)
105
if(null != name && System.IO.Path.
MAX_PATH
< name.Length)
233
if(null != name && System.IO.Path.
MAX_PATH
< name.Length)
system\threading\mutex.cs (3)
63
if(null != name && System.IO.Path.
MAX_PATH
< name.Length)
92
if (null != name && Path.
MAX_PATH
< name.Length)
363
if(System.IO.Path.
MAX_PATH
< name.Length)