1
我在Silverlight商業應用程序中使用標準的內置表單身份驗證。 在客戶端,我們有:服務器端在ria服務中登錄和註銷事件
WebContext.Current.Authentication.LoggedIn += (s, e) =>
{
...
}
和
WebContext.Current.Authentication.LoggedOut += (s, e) =>
{
...
}
我的問題是:是否有可能趕上登錄和註銷的服務器端事件?