protected void FederatedPassiveSignIn1_SignInError(object sender, Microsoft.IdentityModel.Web.Controls.ErrorEventArgs error)
 {
     throw error.Exception;
 }
 protected void FederatedPassiveSignIn_SignInError(object sender, Microsoft.IdentityModel.Web.Controls.ErrorEventArgs error)
 {
     this.Label1.Visible = true;
     this.Label1.ToolTip = ("Exception thrown is: " + error.Exception.ToString());
 }
Esempio n. 3
0
 protected void FederatedPassiveSignIn1_SignInError(object sender, Microsoft.IdentityModel.Web.Controls.ErrorEventArgs error)
 {
     // Print the exception thrown.
     this.Label1.Visible = true;
     this.Label1.Text    = "Exception thrown is: " + error.Exception.ToString() + "\n\nInner exception is:" + error.Exception.InnerException.ToString();
 }