diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-21 14:59:47 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-21 14:59:47 -0700 |
commit | 2c381fbe2d2598e9549f5646d7bac40e49803760 (patch) | |
tree | 7ae892f6efae8dcc2542aec674c87431975d4ff8 /src/DotNetOAuth/Messaging/IProtocolMessage.cs | |
parent | 59295037cd02c6fb995db248e0a6fc5bed125daf (diff) | |
download | DotNetOpenAuth-2c381fbe2d2598e9549f5646d7bac40e49803760.zip DotNetOpenAuth-2c381fbe2d2598e9549f5646d7bac40e49803760.tar.gz DotNetOpenAuth-2c381fbe2d2598e9549f5646d7bac40e49803760.tar.bz2 |
Refactored the OAuth messages with a base class, and satisfied StyleCop.
Diffstat (limited to 'src/DotNetOAuth/Messaging/IProtocolMessage.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/IProtocolMessage.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/Messaging/IProtocolMessage.cs b/src/DotNetOAuth/Messaging/IProtocolMessage.cs index a95822c..c353c71 100644 --- a/src/DotNetOAuth/Messaging/IProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/IProtocolMessage.cs @@ -25,7 +25,7 @@ namespace DotNetOAuth.Messaging { MessageProtection RequiredProtection { get; }
/// <summary>
- /// Gets whether this is a direct or indirect message.
+ /// Gets a value indicating whether this is a direct or indirect message.
/// </summary>
MessageTransport Transport { get; }
|