7 references to LastIndexOfAny
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\FormDataReader.cs (1)
266
var index = _currentPrefixBuffer.Span.
LastIndexOfAny
(".[");
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\FormDataReader.cs (1)
266
var index = _currentPrefixBuffer.Span.
LastIndexOfAny
(".[");
System.Formats.Tar (2)
System\Formats\Tar\TarHeader.Write.cs (2)
601
int lastIdx = pathNameBytes.
LastIndexOfAny
(PathInternal.Utf8DirectorySeparators);
620
lastIdx = prefix.
LastIndexOfAny
(PathInternal.Utf8DirectorySeparators);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (1)
3041
LastIndexOfAny
((ReadOnlySpan<T>)span, values);
src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (2)
312
return new ReadOnlySpan<char>(ref _firstChar, Length).
LastIndexOfAny
(anyOf);
343
int result = new ReadOnlySpan<char>(ref Unsafe.Add(ref _firstChar, startSearchAt), count).
LastIndexOfAny
(anyOf);