mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Try use ReadOnlySpan<char> instead of String for applicable API - Use Customized Exception to return error result
14 lines
472 B
C#
14 lines
472 B
C#
using System;
|
|
using Flow.Launcher.Plugin.Everything.Everything;
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search.Everything
|
|
{
|
|
public record struct EverythingSearchOption(ReadOnlySpan<char> Keyword,
|
|
SortOption SortOption,
|
|
bool IsContentSearch = false,
|
|
ReadOnlySpan<char> ContentSearchKeyword = default,
|
|
ReadOnlySpan<char> ParentPath = default,
|
|
bool IsRecursive = true,
|
|
int Offset = 0,
|
|
int MaxCount = 100);
|
|
}
|