summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ResourceServer
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-23 19:32:57 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-23 19:32:57 -0700
commit6149b8fd73cd67cccba26d97b6b5da9d3440baba (patch)
treec7a8fe0294ff548746c4eb256036070f4352767d /src/DotNetOpenAuth.OAuth2.ResourceServer
parent7554f28663e528bcd8ed7acd87184066cdf60fa3 (diff)
downloadDotNetOpenAuth-6149b8fd73cd67cccba26d97b6b5da9d3440baba.zip
DotNetOpenAuth-6149b8fd73cd67cccba26d97b6b5da9d3440baba.tar.gz
DotNetOpenAuth-6149b8fd73cd67cccba26d97b6b5da9d3440baba.tar.bz2
Fixed C# warnings.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ResourceServer')
-rw-r--r--src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs
index a15620e..cd0fb55 100644
--- a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs
+++ b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/ResourceServer.cs
@@ -83,7 +83,7 @@ namespace DotNetOpenAuth.OAuth2 {
/// </returns>
/// <exception cref="ProtocolFaultResponseException">
/// Thrown when the client is not authorized. This exception should be caught and the
- /// <see cref="ProtocolFaultResponseException.ErrorResponse"/> message should be returned to the client.
+ /// <see cref="ProtocolFaultResponseException.ErrorResponseMessage"/> message should be returned to the client.
/// </exception>
public virtual AccessToken GetAccessToken(HttpRequestBase httpRequestInfo = null, params string[] requiredScopes) {
Requires.NotNull(requiredScopes, "requiredScopes");
@@ -136,7 +136,7 @@ namespace DotNetOpenAuth.OAuth2 {
/// </returns>
/// <exception cref="ProtocolFaultResponseException">
/// Thrown when the client is not authorized. This exception should be caught and the
- /// <see cref="ProtocolFaultResponseException.ErrorResponse"/> message should be returned to the client.
+ /// <see cref="ProtocolFaultResponseException.ErrorResponseMessage"/> message should be returned to the client.
/// </exception>
public virtual IPrincipal GetPrincipal(HttpRequestBase httpRequestInfo = null, params string[] requiredScopes) {
AccessToken accessToken = this.GetAccessToken(httpRequestInfo, requiredScopes);
@@ -166,7 +166,7 @@ namespace DotNetOpenAuth.OAuth2 {
/// </returns>
/// <exception cref="ProtocolFaultResponseException">
/// Thrown when the client is not authorized. This exception should be caught and the
- /// <see cref="ProtocolFaultResponseException.ErrorResponse"/> message should be returned to the client.
+ /// <see cref="ProtocolFaultResponseException.ErrorResponseMessage"/> message should be returned to the client.
/// </exception>
public virtual IPrincipal GetPrincipal(HttpRequestMessageProperty request, Uri requestUri, params string[] requiredScopes) {
Requires.NotNull(request, "request");