blob: bebd30371d8c57f7ed2d2020777c143ec1932f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//-----------------------------------------------------------------------
// <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 the URL of the intended receiver of this message.
/// </summary>
Uri Recipient { get; }
}
}
|