diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-08-25 06:57:54 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-08-25 06:57:54 -0700 |
commit | d8224918add775dabc20178b49637a773d2998cc (patch) | |
tree | 783405f3570bfc86d12002640d71613d42fb739b | |
parent | 0d45d4d3a519f6ae15e504c976d2b2e6a268eddf (diff) | |
download | DotNetOpenAuth-d8224918add775dabc20178b49637a773d2998cc.zip DotNetOpenAuth-d8224918add775dabc20178b49637a773d2998cc.tar.gz DotNetOpenAuth-d8224918add775dabc20178b49637a773d2998cc.tar.bz2 |
Fixed some compiler warnings.
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs | 6 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs | 5 |
2 files changed, 3 insertions, 8 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs index b3fe500..0933e9c 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs @@ -235,12 +235,6 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// </summary> private Dictionary<Type, string> clientScriptExtensions = new Dictionary<Type, string>(); - /// <summary> - /// Stores the result of an AJAX discovery request while it is waiting - /// to be picked up by ASP.NET on the way down to the user agent. - /// </summary> - private string discoveryResult; - #region Events /// <summary> diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs index 123b1ea..854eba7 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyAjaxControlBase.cs @@ -79,7 +79,8 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { private IAuthenticationResponse authenticationResponse; /// <summary> - /// Stores the result of a AJAX callback discovery. + /// Stores the result of an AJAX discovery request while it is waiting + /// to be picked up by ASP.NET on the way down to the user agent. /// </summary> private string discoveryResult; @@ -108,7 +109,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// <b>No security critical decisions should be made within event handlers /// for this event</b> as the authenticity of the assertion has not been /// verified yet. All security related code should go in the event handler - /// for the <see cref="LoggedIn"/> event. + /// for the <see cref="OpenIdRelyingPartyControlBase.LoggedIn"/> event. /// </remarks> [Description("Fired when a Provider sends back a positive assertion to this control, but the authentication has not yet been verified.")] public event EventHandler<OpenIdEventArgs> UnconfirmedPositiveAssertion; |