summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth/OAuth/WebConsumer.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-15 14:39:00 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-15 14:39:00 -0700
commit8489549474fc59f61ff0b7e8ae7d8ffaa9bd7566 (patch)
treef930049a0159dc4b7229c694ed54ccc2de1e6bd8 /src/DotNetOpenAuth/OAuth/WebConsumer.cs
parentf609820f0486cf92edab48c3fbd5adfc133263bc (diff)
downloadDotNetOpenAuth-8489549474fc59f61ff0b7e8ae7d8ffaa9bd7566.zip
DotNetOpenAuth-8489549474fc59f61ff0b7e8ae7d8ffaa9bd7566.tar.gz
DotNetOpenAuth-8489549474fc59f61ff0b7e8ae7d8ffaa9bd7566.tar.bz2
Removed some somewhat redundant method overloads from the OAuth facade classes.
Diffstat (limited to 'src/DotNetOpenAuth/OAuth/WebConsumer.cs')
-rw-r--r--src/DotNetOpenAuth/OAuth/WebConsumer.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/DotNetOpenAuth/OAuth/WebConsumer.cs b/src/DotNetOpenAuth/OAuth/WebConsumer.cs
index e83be8b..ee4a31d 100644
--- a/src/DotNetOpenAuth/OAuth/WebConsumer.cs
+++ b/src/DotNetOpenAuth/OAuth/WebConsumer.cs
@@ -75,15 +75,6 @@ namespace DotNetOpenAuth.OAuth {
/// </summary>
/// <param name="request">The incoming HTTP request.</param>
/// <returns>The access token, or null if no incoming authorization message was recognized.</returns>
- public AuthorizedTokenResponse ProcessUserAuthorization(HttpRequest request) {
- return this.ProcessUserAuthorization(new HttpRequestInfo(request));
- }
-
- /// <summary>
- /// Processes an incoming authorization-granted message from an SP and obtains an access token.
- /// </summary>
- /// <param name="request">The incoming HTTP request.</param>
- /// <returns>The access token, or null if no incoming authorization message was recognized.</returns>
internal AuthorizedTokenResponse ProcessUserAuthorization(HttpRequestInfo request) {
UserAuthorizationResponse authorizationMessage;
if (this.Channel.TryReadFromRequest<UserAuthorizationResponse>(request, out authorizationMessage)) {