blob: 82ee08e9c99d48800189ba7809b40ded60f1050d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//-----------------------------------------------------------------------
// <copyright file="IDirectedProtocolMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging {
using System;
/// <summary>
/// Implemented by messages that have explicit recipients
/// (direct requests and all indirect messages).
/// </summary>
internal interface IDirectedProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the URL of the intended receiver of this message.
/// </summary>
Uri Recipient {
get;
set;
}
}
}
|