blob: 66b7f3c4a09347e48ab11c2279060856c2873b49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//-----------------------------------------------------------------------
// <copyright file="IMessagePartFormattingEncoder.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging.Reflection {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <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 IMessagePartFormattingEncoder : IMessagePartEncoder {
/// <summary>
/// Gets the type of the encoded values produced by this encoder, as they would appear in their preferred form.
/// </summary>
Type FormattingType { get; }
}
}
|