blob: 8b9501ff64f824fb74fa30012a74b388844d4bef (
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="ITamperResistantProtocolMessage.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
/// <summary>
/// The contract a message that is signed must implement.
/// </summary>
/// <remarks>
/// This type might have appeared in the DotNetOpenAuth.Messaging.Bindings namespace since
/// it is only used by types in that namespace, but all those types are internal and this
/// is the only one that was public.
/// </remarks>
public interface ITamperResistantProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the message signature.
/// </summary>
string Signature { get; set; }
}
}
|