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