summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/IProtocolMessageRequest.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-01 16:15:36 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-01 16:16:29 -0700
commitfe89b650595d828f44270ee1226d72e945f7260c (patch)
tree7994fbbb23abc7ff0751ac9bb0d8cdb93bc32f6b /src/DotNetOAuth/IProtocolMessageRequest.cs
parent4e83c2d321f57cac5e5605097faf15bf1b46efa5 (diff)
downloadDotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.zip
DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.gz
DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.bz2
Moved messaging infrastructure to its own namespace.
Diffstat (limited to 'src/DotNetOAuth/IProtocolMessageRequest.cs')
-rw-r--r--src/DotNetOAuth/IProtocolMessageRequest.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/DotNetOAuth/IProtocolMessageRequest.cs b/src/DotNetOAuth/IProtocolMessageRequest.cs
deleted file mode 100644
index 61dfddc..0000000
--- a/src/DotNetOAuth/IProtocolMessageRequest.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="IProtocolMessageRequest.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOAuth {
- 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;
- }
- }
-}