This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TellMeSearchProvider] | |
public class QuickInfoProvider : ITellMePluginLoader | |
{ | |
public ISearchDataProvider InitializeProvider() | |
{ | |
var quickInfoSearchDataProvider = new QuickInfoSearchDataProvider(); | |
return quickInfoSearchDataProvider; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class QuickInfoSearchDataProvider : ISearchDataProvider | |
{ | |
public string Name => "info"; | |
public Icon ProviderIcon => PluginResources.info_1930258; | |
public static Engine Instance { get; } = new Engine( | |
typeof(Engine).Assembly, | |
typeof(Ip).Assembly); |
OlderNewer