diff options
Diffstat (limited to 'src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs')
-rw-r--r-- | src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs b/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs new file mode 100644 index 0000000..9151464 --- /dev/null +++ b/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs @@ -0,0 +1,25 @@ +//-----------------------------------------------------------------------
+// <copyright file="IOAuthDirectedMessage.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOAuth.OAuth.ChannelElements {
+ using System;
+ using DotNetOAuth.Messaging;
+
+ /// <summary>
+ /// Additional properties that apply specifically to OAuth messages.
+ /// </summary>
+ public interface IOAuthDirectedMessage : IDirectedProtocolMessage {
+ /// <summary>
+ /// Gets the preferred method of transport for the message.
+ /// </summary>
+ HttpDeliveryMethods HttpMethods { get; }
+
+ /// <summary>
+ /// Gets or sets the URL of the intended receiver of this message.
+ /// </summary>
+ new Uri Recipient { get; set; }
+ }
+}
|