blob: b1d960f469f1ecb18ba1c14f9f521d3190eb43ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//-----------------------------------------------------------------------
// <copyright file="ITamperResistantProtocolMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging.Bindings {
/// <summary>
/// The contract a message that is signed must implement.
/// </summary>
internal interface ITamperResistantProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the message signature.
/// </summary>
string Signature { get; set; }
}
}
|