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