diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-02 06:34:19 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-02 06:34:19 -0700 |
commit | 938fa2719d3336d22326028bebd2adb74e0bee9d (patch) | |
tree | 456f1ca7cb3ce2de8a2413e1da7cdd7dcd832217 /src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs | |
parent | cded2f8669b219fff104260eb681c67bf7ea1c10 (diff) | |
download | DotNetOpenAuth-938fa2719d3336d22326028bebd2adb74e0bee9d.zip DotNetOpenAuth-938fa2719d3336d22326028bebd2adb74e0bee9d.tar.gz DotNetOpenAuth-938fa2719d3336d22326028bebd2adb74e0bee9d.tar.bz2 |
Lots of design work on the channel stack.
Diffstat (limited to 'src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs b/src/DotNetOAuth/Messaging/IProtocolMessageRequest.cs deleted file mode 100644 index c70f076..0000000 --- a/src/DotNetOAuth/Messaging/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.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;
- }
- }
-}
|