WSFederationAuthenticationModule.SignedIn イベント

定義

ユーザーがサインインした後に発生します。

public:
 event EventHandler ^ SignedIn;
public event EventHandler SignedIn;
member this.SignedIn : EventHandler 
Public Custom Event SignedIn As EventHandler 
Public Event SignedIn As EventHandler 

イベントの種類

void WSFederationAuthenticationModule_SignedIn(object sender, EventArgs e)
{
    //Anything that's needed right after succesful session and before hitting the application code goes here
    System.Diagnostics.Trace.WriteLine("Handling SignIn event");
}

注釈

要求がログイン ページに投稿されると、このモジュールではなく、ページ上のコントロールによってこのイベントが発生します。

適用対象