diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-01 16:15:36 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-01 16:16:29 -0700 |
commit | fe89b650595d828f44270ee1226d72e945f7260c (patch) | |
tree | 7994fbbb23abc7ff0751ac9bb0d8cdb93bc32f6b /src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs | |
parent | 4e83c2d321f57cac5e5605097faf15bf1b46efa5 (diff) | |
download | DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.zip DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.gz DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.bz2 |
Moved messaging infrastructure to its own namespace.
Diffstat (limited to 'src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs b/src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs new file mode 100644 index 0000000..c70f076 --- /dev/null +++ b/src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs @@ -0,0 +1,22 @@ +//-----------------------------------------------------------------------
+// <copyright file="IProtocolMessageRequest.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOAuth.Messaging {
+ using System;
+
+ /// <summary>
+ /// Implemented by messages that are sent as requests.
+ /// </summary>
+ internal interface IProtocolMessageRequest : IProtocolMessage {
+ /// <summary>
+ /// Gets or sets the URL of the intended receiver of this message.
+ /// </summary>
+ Uri Recipient {
+ get;
+ set;
+ }
+ }
+}
|