diff options
Diffstat (limited to 'src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs')
-rw-r--r-- | src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs b/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs deleted file mode 100644 index 9151464..0000000 --- a/src/DotNetOAuth/OAuth/ChannelElements/IOAuthDirectedMessage.cs +++ /dev/null @@ -1,25 +0,0 @@ -//-----------------------------------------------------------------------
-// <copyright file="IOAuthDirectedMessage.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOAuth.OAuth.ChannelElements {
- using System;
- using DotNetOAuth.Messaging;
-
- /// <summary>
- /// Additional properties that apply specifically to OAuth messages.
- /// </summary>
- public interface IOAuthDirectedMessage : IDirectedProtocolMessage {
- /// <summary>
- /// Gets the preferred method of transport for the message.
- /// </summary>
- HttpDeliveryMethods HttpMethods { get; }
-
- /// <summary>
- /// Gets or sets the URL of the intended receiver of this message.
- /// </summary>
- new Uri Recipient { get; set; }
- }
-}
|