diff options
Diffstat (limited to 'src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs b/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs index 82ee08e..bebd303 100644 --- a/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs @@ -13,11 +13,8 @@ namespace DotNetOAuth.Messaging { /// </summary>
internal interface IDirectedProtocolMessage : IProtocolMessage {
/// <summary>
- /// Gets or sets the URL of the intended receiver of this message.
+ /// Gets the URL of the intended receiver of this message.
/// </summary>
- Uri Recipient {
- get;
- set;
- }
+ Uri Recipient { get; }
}
}
|