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/IndirectMessageEncoder.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/IndirectMessageEncoder.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IndirectMessageEncoder.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOAuth/Messaging/IndirectMessageEncoder.cs b/src/DotNetOAuth/Messaging/IndirectMessageEncoder.cs index d17fb2a..3cfc64e 100644 --- a/src/DotNetOAuth/Messaging/IndirectMessageEncoder.cs +++ b/src/DotNetOAuth/Messaging/IndirectMessageEncoder.cs @@ -10,11 +10,11 @@ namespace DotNetOAuth.Messaging { /// </summary>
internal class IndirectMessageEncoder {
/// <summary>
- /// Prepares a protocol message for sending
+ /// Prepares a message for sending
/// </summary>
/// <param name="message">The indirect message to send.</param>
/// <returns>The encoded message to send to the user agent.</returns>
- internal ProtocolMessageResponse Encode(IProtocolMessage message) {
+ internal Response Encode(IProtocolMessage message) {
throw new System.NotImplementedException();
}
}
|