38 references to AltDirectorySeparatorChar
mscorlib (27)
system\io\directory.cs (3)
188|| fullPath.EndsWith( Path.AltDirectorySeparatorChar ) ) 195|| fullPath.EndsWith( Path.AltDirectorySeparatorChar )) ) 261while (i > lengthRoot && fullPath[i] != Path.DirectorySeparatorChar && fullPath[i] != Path.AltDirectorySeparatorChar) i--;
system\io\file.cs (1)
1365String tempPath = path.TrimEnd(new char [] {Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar});
system\io\filesysteminfo.cs (1)
131if (ch == Path.DirectorySeparatorChar || ch == Path.AltDirectorySeparatorChar || ch == Path.VolumeSeparatorChar)
system\io\isolatedstorage\isolatedstoragefile.cs (1)
2424lastChar == Path.AltDirectorySeparatorChar ||
system\io\longpath.cs (4)
152while (i > root && tempPath[--i] != Path.DirectorySeparatorChar && tempPath[i] != Path.AltDirectorySeparatorChar); 506while (i > lengthRoot && fullPath[i] != Path.DirectorySeparatorChar && fullPath[i] != Path.AltDirectorySeparatorChar) i--; 963|| fullPath.EndsWith(Path.AltDirectorySeparatorChar.ToString(), StringComparison.Ordinal)) 971|| fullPath.EndsWith(Path.AltDirectorySeparatorChar.ToString(), StringComparison.Ordinal)))
system\io\path.cs (16)
125if (ch == DirectorySeparatorChar || ch == AltDirectorySeparatorChar || ch == VolumeSeparatorChar) break; 227while (i > root && path[--i] != DirectorySeparatorChar && path[i] != AltDirectorySeparatorChar); 269while (i < length && ((path[i] != DirectorySeparatorChar && path[i] != AltDirectorySeparatorChar) || --n > 0)) i++; 281return (c==DirectorySeparatorChar || c == AltDirectorySeparatorChar); 315if (ch == DirectorySeparatorChar || ch == AltDirectorySeparatorChar || ch == VolumeSeparatorChar) 562if (path.Length > 0 && (path[0] == DirectorySeparatorChar || path[0] == AltDirectorySeparatorChar)) { 580if (currentChar == DirectorySeparatorChar || currentChar == AltDirectorySeparatorChar) { 639(path[index + 1] == DirectorySeparatorChar || path[index + 1] == AltDirectorySeparatorChar)) 1014if (ch == DirectorySeparatorChar || ch == AltDirectorySeparatorChar || ch == VolumeSeparatorChar) 1175if (ch == DirectorySeparatorChar || ch == AltDirectorySeparatorChar || ch == VolumeSeparatorChar) break; 1191if ((length >= 1 && (path[0] == DirectorySeparatorChar || path[0] == AltDirectorySeparatorChar)) || (length >= 2 && path[1] == VolumeSeparatorChar)) 1261if (ch != DirectorySeparatorChar && ch != AltDirectorySeparatorChar && ch != VolumeSeparatorChar) 1276if (ch != DirectorySeparatorChar && ch != AltDirectorySeparatorChar && ch != VolumeSeparatorChar) { 1299if (ch != DirectorySeparatorChar && ch != AltDirectorySeparatorChar && ch != VolumeSeparatorChar) 1381|| (searchPattern[index+2] == AltDirectorySeparatorChar)) 1411if (ch != DirectorySeparatorChar && ch != AltDirectorySeparatorChar && ch != VolumeSeparatorChar)
system\io\pathinternal.cs (1)
558return c == Path.DirectorySeparatorChar || c == Path.AltDirectorySeparatorChar;
System (1)
compmod\system\diagnostics\traceutils.cs (1)
58if ((initializeData[0] != Path.DirectorySeparatorChar) && (initializeData[0] != Path.AltDirectorySeparatorChar) && !Path.IsPathRooted(initializeData)) {
System.AddIn (1)
System\Addin\Hosting\Utils.cs (1)
160if (lastChar != Path.DirectorySeparatorChar && lastChar != Path.AltDirectorySeparatorChar)
System.Core (1)
System\Diagnostics\EventSchemaTraceListener.cs (1)
88if (!String.IsNullOrEmpty(this.fileName) && (fileName[0] != Path.DirectorySeparatorChar) && (fileName[0] != Path.AltDirectorySeparatorChar) && !Path.IsPathRooted(fileName)) {
System.Web (1)
MimeMapping.cs (1)
37private static readonly char[] _pathSeparatorChars = new char[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar, Path.VolumeSeparatorChar }; // from Path.GetFileName()
System.Web.Extensions (1)
Compilation\WCFModel\ExternalFile.cs (1)
139if (fileName.IndexOfAny(Path.GetInvalidFileNameChars()) >= 0 || fileName.IndexOfAny(new Char[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar, Path.VolumeSeparatorChar }) >= 0)
System.Workflow.Activities (1)
Designers\StateDesigner.cs (1)
2734relativePath = relativePath.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\CompileXomlTask.cs (2)
1190manifestName = manifestName.Replace(Path.AltDirectorySeparatorChar, '.'); 1204manifestName = manifestName.Replace(Path.AltDirectorySeparatorChar, '.');
AuthoringOM\Compiler\XomlCompilerParameters.cs (1)
229if ((path[parentLength] != Path.DirectorySeparatorChar) && (path[parentLength] != Path.AltDirectorySeparatorChar))
AuthoringOM\Design\DesignerHelpers.cs (1)
1465relativePath = relativePath.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
System.Xml (1)
System\Xml\Serialization\Configuration\XmlSerializerSection.cs (1)
90if (firstChar == Path.DirectorySeparatorChar || firstChar == Path.AltDirectorySeparatorChar)