私のアプリケーションでは、ログイン後にプリズムを使用して WPF にログインしましたが、モジュールにアクセスできるいくつかの値 (user_id、username など) を保存する必要があるため、MEF でプリズムを使用してその問題を解決するにはどうすればよいですか?
private void Login()
{
try
{
authentication.Login(LoginModel.UserName, LoginModel.Password);
// what i want to do here
(new InventoryBootstrapper()).Run();
App.Current.Windows[0].Close();
}
catch (Exception ex)
{
ErrorMessage = ex.Message;
}
}