mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
35 lines
852 B
C#
35 lines
852 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WinAlfred.Plugin.Everything
|
|
{
|
|
public class Main : IPlugin
|
|
{
|
|
EverythingAPI api = new EverythingAPI();
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
var results = new List<Result>();
|
|
if (query.ActionParameters.Count > 0 && query.ActionParameters[0].Length > 0)
|
|
{
|
|
IEnumerable<string> enumerable = api.Search(query.ActionParameters[0]);
|
|
foreach (string s in enumerable)
|
|
{
|
|
Result r = new Result();
|
|
r.Title = s;
|
|
results.Add(r);
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
public void Init()
|
|
{
|
|
//init everything
|
|
}
|
|
}
|
|
}
|