blob: 8479fefe83dadf5fd8c4462d64454297b48d5d05 (
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>
public interface IDirectedProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets the URL of the intended receiver of this message.
/// </summary>
Uri Recipient { get; }
}
}
|