diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-15 17:27:20 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-06-23 19:53:12 -0700 |
commit | 5902a697d07bbd9066b8440f2d93590bff080c4f (patch) | |
tree | a9b6006eaf59f1d21709e365a599ea37e1e5348f /src | |
parent | f0e6a35d232d89fa5fc903bec907179119e4c0bf (diff) | |
download | DotNetOpenAuth-5902a697d07bbd9066b8440f2d93590bff080c4f.zip DotNetOpenAuth-5902a697d07bbd9066b8440f2d93590bff080c4f.tar.gz DotNetOpenAuth-5902a697d07bbd9066b8440f2d93590bff080c4f.tar.bz2 |
Fixed a comment error and a hard-coded string.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OAuth2/Messages/EndUserAuthorizationRequest.cs | 3 |
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; } |