diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-31 09:11:40 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-01 11:02:45 -0700 |
commit | 3b9f6c07d828dfa063185839588f4d11ef1aeb3e (patch) | |
tree | e62c2c12cd5b4de54eab8b5e19adeb9bf3be1a93 /src/DotNetOAuth/IProtocolMessageRequest.cs | |
parent | d385d8d38fc971e75d841b7a55591a67828caf17 (diff) | |
download | DotNetOpenAuth-3b9f6c07d828dfa063185839588f4d11ef1aeb3e.zip DotNetOpenAuth-3b9f6c07d828dfa063185839588f4d11ef1aeb3e.tar.gz DotNetOpenAuth-3b9f6c07d828dfa063185839588f4d11ef1aeb3e.tar.bz2 |
Added some more message channel supports.
Diffstat (limited to 'src/DotNetOAuth/IProtocolMessageRequest.cs')
-rw-r--r-- | src/DotNetOAuth/IProtocolMessageRequest.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/DotNetOAuth/IProtocolMessageRequest.cs b/src/DotNetOAuth/IProtocolMessageRequest.cs new file mode 100644 index 0000000..655c3df --- /dev/null +++ b/src/DotNetOAuth/IProtocolMessageRequest.cs @@ -0,0 +1,19 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace DotNetOAuth {
+ /// <summary>
+ /// Implemented by messages that are sent as requests.
+ /// </summary>
+ public interface IProtocolMessageRequest : IProtocolMessage {
+ /// <summary>
+ /// The URL of the intended receiver of this message.
+ /// </summary>
+ Uri Recipient {
+ get;
+ set;
+ }
+ }
+}
|