MEF导入问题

时间:2012-07-31 21:15:19

标签: import mef

导入无效。

我有一个UserProfileService类,我可以在AggregateCatalog中看到它导出。 UserProfileService位于基础设施项目中。我正在基础设施项目的RelayCommand类中导入它。我已经通过类似的帖子,但无法解决它。将不胜感激任何帮助。这是代码:

[Export(typeof(IUserProfileService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class UserProfileService : IUserProfileService
{
    ...
} 

public class RelayCommand<T> : ICommand
{
    [Import]
    private IUserProfileService UserProfileService { get; set; }
    ...
}

谢谢, 伊马德。

0 个答案:

没有答案