我一直在尝试设计一个用于某些插件的高效界面。我以为我找到了一个不错的接口,但尝试实现它并不顺利。所以我希望看看这里是否有人对如何做到这一点有更好的建议。它错误“不包含'GetEnumerator'的公共定义”
插件界面:
namespace ALeRT.PluginFramework
{
public interface IQueryPlugin
{
string PluginCategory { get; }
string Name { get; }
string Version { get; }
string Author { get; }
System.Collections.Generic.List TypesAccepted { get; }
}
interface IQueryPluginRBool : IQueryPlugin
{
bool Result(string input, bool sensitive);
}
interface IQueryPluginRString : IQueryPlugin
{
string Result(string input, bool sensitive);
}
}
本质上,我正在尝试获取应该使用的类型列表(类型可以是 URL、名称、电子邮件、IP 等)并将它们与查询插件中的值进行比较。每个查询插件都可能有多种它接受的类型。当它们匹配时,它会执行查询插件中的操作。
[ImportMany]
public IEnumerable<IQueryPlugin> QPlugins { get; set; }
private void QueryPlugins(List<string> val, bool sensitive)
{
foreach (string tType in val) //Cycle through a List<string>
{
foreach (var qPlugins in this.QPlugins) //Cycle through all query plugins
{
foreach (string qType in qPlugins) //Cycle though a List<string> within the IQueryPlugin interface AcceptedTypes
{
if (qType == tType) //Match the two List<strings>, one is the AcceptedTypes and the other is the one returned from ITypeQuery
{
//Do stuff here
}
}
}
}
}