blob: 1e8208ba456fd6a806c82039c62c1dff8739764e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//-----------------------------------------------------------------------
// <copyright file="IMessagePartOriginalEncoder.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging.Reflection {
/// <summary>
/// An interface describing how various objects can be serialized and deserialized between their object and string forms.
/// </summary>
/// <remarks>
/// Implementations of this interface must include a default constructor and must be thread-safe.
/// </remarks>
public interface IMessagePartOriginalEncoder : IMessagePartEncoder {
/// <summary>
/// Encodes the specified value as the original value that was formerly decoded.
/// </summary>
/// <param name="value">The value. Guaranteed to never be null.</param>
/// <returns>The <paramref name="value"/> in string form, ready for message transport.</returns>
string EncodeAsOriginalString(object value);
}
}
|