diff options
-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; |