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