Disable Azure AppFabric Access Control Service

I use Live Id and Google as IP addresses, but I don’t know how to make the logout button.

+2
source share
1 answer

From http://acs.codeplex.com/SourceControl/changeset/view/60691#1067602 :

WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule;

try
{
    FormsAuthentication.SignOut();
}
finally
{
    fam.SignOut(true); 
}
+2
source

All Articles