summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-07-13 08:14:08 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-07-13 08:14:08 -0700
commit1fced6e40e8fa930e8876b93020d9e05163f92f9 (patch)
tree313b0a6f5c14edbe3c687c22f5fb6864a785a7e6
parent98eec2725e7313f7cea7eac0e760fce337f37efd (diff)
downloadDotNetOpenAuth-1fced6e40e8fa930e8876b93020d9e05163f92f9.zip
DotNetOpenAuth-1fced6e40e8fa930e8876b93020d9e05163f92f9.tar.gz
DotNetOpenAuth-1fced6e40e8fa930e8876b93020d9e05163f92f9.tar.bz2
Fixed StyleCop messages introduced in 3664eb6c1da4e5.
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
index 6cffc88..bd45045 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/PositiveAuthenticationResponse.cs
@@ -104,14 +104,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
#endregion
/// <summary>
- /// Gets the positive assertion response message.
- /// </summary>
- protected internal new PositiveAssertionResponse Response {
- get { return (PositiveAssertionResponse)base.Response; }
- }
-
- /// <summary>
- /// The OpenID service endpoint reconstructed from the assertion message.
+ /// Gets the OpenID service endpoint reconstructed from the assertion message.
/// </summary>
/// <remarks>
/// This information is straight from the Provider, and therefore must not
@@ -122,6 +115,13 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
internal ServiceEndpoint Endpoint { get; private set; }
/// <summary>
+ /// Gets the positive assertion response message.
+ /// </summary>
+ protected internal new PositiveAssertionResponse Response {
+ get { return (PositiveAssertionResponse)base.Response; }
+ }
+
+ /// <summary>
/// Verifies that the positive assertion data matches the results of
/// discovery on the Claimed Identifier.
/// </summary>