blob: 79cbec4e13c2077704d8efd4dcdea58075bfea25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//-----------------------------------------------------------------------
// <copyright file="IDirectedProtocolMessage.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.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 preferred method of transport for the message.
/// </summary>
/// <remarks>
/// For indirect messages this will likely be GET+POST, which both can be simulated in the user agent:
/// the GET with a simple 301 Redirect, and the POST with an HTML form in the response with javascript
/// to automate submission.
/// </remarks>
HttpDeliveryMethods HttpMethods { get; }
/// <summary>
/// Gets the URL of the intended receiver of this message.
/// </summary>
Uri Recipient { get; }
}
}
|