📄 plugin.cs
字号:
using Lucene.Net.Analysis;
namespace ShootSearch.Plugin
{
/// <summary>
/// Plugin 的摘要说明。
/// </summary>
public interface IParserPlugin
{
/// <summary>
/// List of extensions that can be processed by this plugin
/// </summary>
string[] Extensions {get;}
/// <summary>
/// Extracts the plain text from a file
/// </summary>
/// <param name="path">Full path to the file to be parsed.</param>
/// <returns></returns>
string Extract(string path);
/// <summary>
/// Which DotLucene Analyzer to use.
/// </summary>
Analyzer Analyzer {get;}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -