blob: 101e608cc6a4f247d465088cd77bbede23a8b38a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
namespace OpenIdWebRingSsoProvider {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DotNetOpenAuth.OpenId.Provider;
using OpenIdWebRingSsoProvider.Code;
public partial class Server : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
}
protected void providerEndpoint1_AuthenticationChallenge(object sender, AuthenticationChallengeEventArgs e) {
Util.ProcessAuthenticationChallenge(e.Request);
}
}
}
|