10 references to IndexOf
Microsoft.Build.Framework (1)
Telemetry\CrashTelemetry.cs (1)
709
int inIndex = stackTrace.
IndexOf
(" in ", start, end - start, StringComparison.Ordinal);
Microsoft.Extensions.FileSystemGlobbing (1)
Internal\PathSegments\WildcardPathSegment.cs (1)
66
int indexOf = value.
IndexOf
(
PresentationFramework (1)
System\Windows\Documents\FixedSOMPageConstructor.cs (1)
431
charIndex = s.
IndexOf
(" ", charIndex+1, s.Length - charIndex -1, StringComparison.Ordinal);
System.Data.Odbc (2)
System\Data\Odbc\OdbcDataReader.cs (2)
2889
if (useQuotes && (name.
IndexOf
(quotePrefix!, currentPos, quotePrefix!.Length, StringComparison.Ordinal) == currentPos))
2910
if ((currentPos < name.Length) && (name.
IndexOf
(quoteSuffix, currentPos, quoteSuffix.Length, StringComparison.Ordinal) == currentPos))
System.Net.NetworkInformation (2)
System\Net\NetworkInformation\StringParsingHelpers.Addresses.cs (2)
98
int interfaceIndex = fileContents.
IndexOf
("interface", firstBrace, blockLength, StringComparison.Ordinal);
107
int indexOfDhcp = fileContents.
IndexOf
("dhcp-server-identifier", firstBrace, blockLength, StringComparison.Ordinal);
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (3)
318
return
IndexOf
(value, startIndex, count, StringComparison.CurrentCulture);
323
return
IndexOf
(value, 0, Length, comparisonType);
328
return
IndexOf
(value, startIndex, Length - startIndex, comparisonType);