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