//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging {
///
/// A message encoder that prepares messages for transmittal.
///
internal class IndirectMessageEncoder {
///
/// Prepares a message for sending
///
/// The indirect message to send.
/// The encoded message to send to the user agent.
internal Response Encode(IProtocolMessage message) {
throw new System.NotImplementedException();
}
}
}