diff options
Diffstat (limited to 'samples/OpenIdRelyingPartyWebForms/Global.asax.cs')
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/Global.asax.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/Global.asax.cs b/samples/OpenIdRelyingPartyWebForms/Global.asax.cs index 6583289..6283987 100644 --- a/samples/OpenIdRelyingPartyWebForms/Global.asax.cs +++ b/samples/OpenIdRelyingPartyWebForms/Global.asax.cs @@ -14,11 +14,11 @@ internal static StringBuilder LogMessages = new StringBuilder(); - internal static WebConsumer GoogleWebConsumer { + internal static WebConsumerOpenIdRelyingParty GoogleWebConsumer { get { - var googleWebConsumer = (WebConsumer)HttpContext.Current.Application["GoogleWebConsumer"]; + var googleWebConsumer = (WebConsumerOpenIdRelyingParty)HttpContext.Current.Application["GoogleWebConsumer"]; if (googleWebConsumer == null) { - googleWebConsumer = new WebConsumer(GoogleConsumer.ServiceDescription, GoogleTokenManager); + googleWebConsumer = new WebConsumerOpenIdRelyingParty(GoogleConsumer.ServiceDescription, GoogleTokenManager); HttpContext.Current.Application["GoogleWebConsumer"] = googleWebConsumer; } |