我想使用mef从webapi过滤器中调用外部方法
(它也已导出,我可以从代码的其他部分从构造者中导入它。)
有可能吗?
您能详细说明吗?
谢谢
例如代码:
public class SomeCustomFilter : ActionFilterAttribute
{
[Import] ISomeServicer _someservice { get; set; }
// static object foo
public override void OnActionExecuting(HttpActionContext actionContext)
{
_someservice.getFoo();
}