C# 从网站注销而不从社交网络注销

C# 从网站注销而不从社交网络注销,c#,asp.net-mvc,session,authentication,linkedin,C#,Asp.net Mvc,Session,Authentication,Linkedin,我还有MVC3的网站。它可以登录LinkedIn等社交网络 当前注销时,我清除所有会话值 FormsAuthentication.SignOut(); FederatedAuthentication.SessionAuthenticationModule.SignOut(); Session.Clear(); 但在该用户被重定向到社交网站后,该用户在该网站上看到您已注销的消息或类似的LinkedIn测试消息 我怎样才能从我的网站而不是社交网站上注销 谢谢

我还有MVC3的网站。它可以登录LinkedIn等社交网络

当前注销时,我清除所有会话值

FormsAuthentication.SignOut();
FederatedAuthentication.SessionAuthenticationModule.SignOut();
Session.Clear();
但在该用户被重定向到社交网站后,该用户在该网站上看到您已注销的消息或类似的LinkedIn测试消息

我怎样才能从我的网站而不是社交网站上注销

谢谢