//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.ChannelElements {
using System;
using DotNetOAuth.Messaging;
///
/// Additional properties that apply specifically to OAuth messages.
///
public interface IOAuthDirectedMessage : IDirectedProtocolMessage {
///
/// Gets the preferred method of transport for the message.
///
HttpDeliveryMethod HttpMethods { get; }
///
/// Gets or sets the URL of the intended receiver of this message.
///
new Uri Recipient { get; set; }
}
}