blob: fd9495ed00c388c362e1f3b8f898870089db9180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//-----------------------------------------------------------------------
// <copyright file="IndirectMessageEncoder.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth {
/// <summary>
/// A message encoder that prepares messages for transmittal.
/// </summary>
internal class IndirectMessageEncoder {
/// <summary>
/// Prepares a protocol 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 IndirectMessage Encode(IProtocolMessage message) {
throw new System.NotImplementedException();
}
}
}
|