Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/Everything/EverythingSearchOption.cs
Hongtao Zhang 8b1c125bdf
Custom Exception & Some Refactor
- Try use ReadOnlySpan<char> instead of String for applicable API
- Use Customized Exception to return error result
2022-09-21 19:18:20 -05:00

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);
}