diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-28 21:27:10 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-28 21:27:10 -0700 |
commit | 4fda6b32d3c91027b07cdb31147332b6626f02c1 (patch) | |
tree | 7233952875eb7b2f185f1ee95590dab90763d5be /src/DotNetOAuth/Messaging/IProtocolMessage.cs | |
parent | b498b5e53e166228c008ec94bee862d174bb61de (diff) | |
download | DotNetOpenAuth-4fda6b32d3c91027b07cdb31147332b6626f02c1.zip DotNetOpenAuth-4fda6b32d3c91027b07cdb31147332b6626f02c1.tar.gz DotNetOpenAuth-4fda6b32d3c91027b07cdb31147332b6626f02c1.tar.bz2 |
Refactored ServiceProviderEndpoints into ServiceProviderDescription and made several classes and interfaces public.
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 c353c71..53b77d6 100644 --- a/src/DotNetOAuth/Messaging/IProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/IProtocolMessage.cs @@ -13,7 +13,7 @@ namespace DotNetOAuth.Messaging { /// The interface that classes must implement to be serialized/deserialized
/// as OAuth messages.
/// </summary>
- internal interface IProtocolMessage {
+ public interface IProtocolMessage {
/// <summary>
/// Gets the version of the protocol this message is prepared to implement.
/// </summary>
|