summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorunknown <andarno@.redmond.corp.microsoft.com>2011-06-15 17:27:20 -0700
committerunknown <andarno@.redmond.corp.microsoft.com>2011-06-15 17:27:20 -0700
commitc349a02d747f8a02ac0497ac19b21e177415b963 (patch)
tree51efbe476820489d8c38df52804195b76c1670f0 /src
parent9bbbb112d243d8f3b78502af5c60a1120cbfdfa1 (diff)
downloadDotNetOpenAuth-c349a02d747f8a02ac0497ac19b21e177415b963.zip
DotNetOpenAuth-c349a02d747f8a02ac0497ac19b21e177415b963.tar.gz
DotNetOpenAuth-c349a02d747f8a02ac0497ac19b21e177415b963.tar.bz2
Fixed a comment error and a hard-coded string.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs b/src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs
index 802aed6..bee1cae 100644
--- a/src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs
+++ b/src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs
@@ -78,7 +78,8 @@ namespace DotNetOpenAuth.OAuth2.Messages {
/// An opaque value that Clients can use to maintain state associated with this request.
/// </value>
/// <remarks>
- /// REQUIRED. The client identifier as described in Section 3.4 (Client Credentials).
+ /// This data is proprietary to the client and should be considered an opaque string to the
+ /// authorization server.
/// </remarks>
[MessagePart(Protocol.state, IsRequired = false)]
public string ClientState { get; set; }