blob: dea8de80729d3e62b5f815d96a18dec54613543e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//-----------------------------------------------------------------------
// <copyright file="IOAuthProtocolDirectedMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messages {
using DotNetOAuth.Messaging;
/// <summary>
/// Additional properties that apply specifically to OAuth messages.
/// </summary>
internal interface IOAuthProtocolDirectedMessage {
/// <summary>
/// Gets the preferred method of transport for the message.
/// </summary>
MessageScheme PreferredScheme { get; }
}
}
|