blob: 61dfddc81aee578910d7017a60daf322bb3c029c (
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 {
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;
}
}
}
|