summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-28 15:04:04 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-28 15:04:04 -0700
commitad79dec82e43910db29d1a259155f2cf3f86e731 (patch)
tree34fc5eab2d77fdd3e6c2aa48f2d056c5e6ba6ff5 /src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs
parent92ec674bd52330d4847f75150cd34263336219b6 (diff)
downloadDotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.zip
DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.gz
DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.bz2
Appendix scenario test passing (again), this time with HMAC signing of HTTP requests.
Diffstat (limited to 'src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs')
-rw-r--r--src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs b/src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs
index 6b8251a..d525f6e 100644
--- a/src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs
+++ b/src/DotNetOAuth/Messages/DirectUserToConsumerMessage.cs
@@ -17,7 +17,7 @@ namespace DotNetOAuth.Messages {
/// </summary>
/// <param name="consumer">The URI of the Consumer endpoint to send this message to.</param>
internal DirectUserToConsumerMessage(Uri consumer)
- : base(MessageProtection.None, MessageTransport.Indirect, new ServiceProviderEndpoint(consumer, HttpDeliveryMethod.GetRequest)) {
+ : base(MessageProtection.None, MessageTransport.Indirect, new MessageReceivingEndpoint(consumer, HttpDeliveryMethod.GetRequest)) {
}
/// <summary>