blob: 62c3088b43fb1a9691f5eda486603b659c0071d1 (
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>
public interface ITamperResistantProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the message signature.
/// </summary>
string Signature { get; set; }
}
}
|