diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-08 14:09:49 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-09 06:02:20 -0700 |
commit | 97293f3fdef0f4700a9eff2af1ae7d41b6ddee8e (patch) | |
tree | 02207a2675d8c6681512bc09d772f945b1a3b911 /src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs | |
parent | 5c6f516bee9fb12d0972b87d891c35f2ae1b8f22 (diff) | |
download | DotNetOpenAuth-97293f3fdef0f4700a9eff2af1ae7d41b6ddee8e.zip DotNetOpenAuth-97293f3fdef0f4700a9eff2af1ae7d41b6ddee8e.tar.gz DotNetOpenAuth-97293f3fdef0f4700a9eff2af1ae7d41b6ddee8e.tar.bz2 |
Fixed build warnings.
Diffstat (limited to 'src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs')
-rw-r--r-- | src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs b/src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs index 59c0be7..003cac8 100644 --- a/src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs +++ b/src/DotNetOpenAuth.Messaging/Messaging/OutgoingWebResponse.cs @@ -155,7 +155,7 @@ namespace DotNetOpenAuth.Messaging { /// Requires a current HttpContext. /// This call is not safe to make from an ASP.NET web form (.aspx file or code-behind) because /// ASP.NET will render HTML after the protocol message has been sent, which will corrupt the response. - /// Use the <see cref="Send"/> method instead for web forms. + /// Use the <see cref="Send()"/> method instead for web forms. /// </remarks> public virtual void Respond() { Requires.ValidState(HttpContext.Current != null && HttpContext.Current.Request != null, MessagingStrings.HttpContextRequired); @@ -174,7 +174,7 @@ namespace DotNetOpenAuth.Messaging { /// <remarks> /// This call is not safe to make from an ASP.NET web form (.aspx file or code-behind) because /// ASP.NET will render HTML after the protocol message has been sent, which will corrupt the response. - /// Use the <see cref="Send"/> method instead for web forms. + /// Use the <see cref="Send()"/> method instead for web forms. /// </remarks> public virtual void Respond(HttpContext context) { Requires.NotNull(context, "context"); |