11 references to IndexOf
mscorlib (3)
system\security\util\urlstring.cs (1)
288if (temp.IndexOf('/',0,userpassIndex) == -1) {
system\string.cs (2)
2267return IndexOf(value, 0, this.Length); 2272return IndexOf(value, startIndex, this.Length - startIndex);
PresentationCore (4)
Core\CSharp\MS\Internal\FontCache\FontCacheUtil.cs (4)
611for (int i = s.IndexOf('%', 0, length); i >= 0; i = s.IndexOf('%', i, length - i)) 769if (friendlyName.IndexOf(',', startIndex, length) < 0) 808int fragmentIndex = fontFamilyReference.IndexOf('#', startIndex, length);
System (1)
net\System\Net\cookie.cs (1)
446else if (domain.IndexOf('.', 1, domain.Length-2) == -1) {
System.Data.Services (1)
System\Data\Services\Parsing\WebConvert.cs (1)
86int match = text.IndexOf('\'', startIndex, text.Length - startIndex - 1);
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContract.cs (1)
1728while ((startIndex = typeName.IndexOf('.', startIndex + 1, endIndex - startIndex - 1)) >= 0)
System.ServiceModel (1)
System\UriTemplate.cs (1)
169int equalSignIndex = queryTemplate.IndexOf('=', queryPartStart, queryPartEnd - queryPartStart);