diff options
Diffstat (limited to 'src/DotNetOAuth/Messaging')
6 files changed, 6 insertions, 6 deletions
diff --git a/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs index b1d960f..62c3088 100644 --- a/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs @@ -8,7 +8,7 @@ namespace DotNetOAuth.Messaging.Bindings { /// <summary>
/// The contract a message that is signed must implement.
/// </summary>
- internal interface ITamperResistantProtocolMessage : IProtocolMessage {
+ public interface ITamperResistantProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the message signature.
/// </summary>
diff --git a/src/DotNetOAuth/Messaging/IChannelBindingElement.cs b/src/DotNetOAuth/Messaging/IChannelBindingElement.cs index 71127f4..25f353f 100644 --- a/src/DotNetOAuth/Messaging/IChannelBindingElement.cs +++ b/src/DotNetOAuth/Messaging/IChannelBindingElement.cs @@ -14,7 +14,7 @@ namespace DotNetOAuth.Messaging { /// An interface that must be implemented by message transforms/validators in order
/// to be included in the channel stack.
/// </summary>
- internal interface IChannelBindingElement {
+ public interface IChannelBindingElement {
/// <summary>
/// Gets the protection offered (if any) by this binding element.
/// </summary>
diff --git a/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs b/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs index bebd303..8479fef 100644 --- a/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs +++ b/src/DotNetOAuth/Messaging/IDirectedProtocolMessage.cs @@ -11,7 +11,7 @@ namespace DotNetOAuth.Messaging { /// Implemented by messages that have explicit recipients
/// (direct requests and all indirect messages).
/// </summary>
- internal interface IDirectedProtocolMessage : IProtocolMessage {
+ public interface IDirectedProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets the URL of the intended receiver of this message.
/// </summary>
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>
diff --git a/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs b/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs index 40203e9..de900db 100644 --- a/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs +++ b/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs @@ -12,7 +12,7 @@ namespace DotNetOAuth.Messaging { /// An interface that must be implemented by message transforms/validators in order
/// to be included in the channel stack.
/// </summary>
- internal interface ITamperProtectionChannelBindingElement : IChannelBindingElement {
+ public interface ITamperProtectionChannelBindingElement : IChannelBindingElement {
/// <summary>
/// Gets or sets the delegate that will initialize the non-serialized properties necessary on a signed
/// message so that its signature can be correctly calculated for verification.
diff --git a/src/DotNetOAuth/Messaging/MessageProtection.cs b/src/DotNetOAuth/Messaging/MessageProtection.cs index a50ccf5..9dc2b9d 100644 --- a/src/DotNetOAuth/Messaging/MessageProtection.cs +++ b/src/DotNetOAuth/Messaging/MessageProtection.cs @@ -17,7 +17,7 @@ namespace DotNetOAuth.Messaging { /// tamper protection to prevent a user from changing the timestamp on a message.
/// </remarks>
[Flags]
- internal enum MessageProtection {
+ public enum MessageProtection {
/// <summary>
/// No protection.
/// </summary>
|