アプリケーションの初期化中に、System.Threading.Thread.CurrentPrincial
. しかし、アプリケーションが初期化された後、このプリンシパルにアクセスしたいのですが、CurrentPrincipal にはデフォルトの GenericPrincipal が再び含まれています。
なぜ私がこの振る舞いをするのか誰にも分かりますか? そして、アプリケーションの初期化後にそれにアクセスするためのプリンシパルをどのように設定する必要があるか。
次の例は、動作を示しています。
MainWindow.xaml:
<Window x:Class="PrincipalTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button Click="ButtonClick"/>
</Grid>
</Window>
MainWindow.xaml.cs:
using System.Collections.Generic;
using System.Diagnostics;
using System.Security.Claims;
using System.Threading;
using System.Windows;
namespace PrincipalTest
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Debug.WriteLine("Principal Type: {0}", Thread.CurrentPrincipal.GetType()); // Principal Type: System.Security.Principal.GenericPrincipal
Thread.CurrentPrincipal = new ClaimsPrincipal();
Debug.WriteLine("Principal Type: {0}", Thread.CurrentPrincipal.GetType()); // Principal Type: System.Security.Claims.ClaimsPrincipal
}
private void ButtonClick(object sender, RoutedEventArgs e)
{
Debug.WriteLine("Principal Type: {0}", Thread.CurrentPrincipal.GetType()); // Principal Type: System.Security.Principal.GenericPrincipal
}
}
}
私の実際のプロジェクトThread.CurrentPrincipal
では、Bootstrapper でプロパティを設定しました。