summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messaging/Channel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-30 08:57:03 -0700
committerAndrew <andrewarnott@gmail.com>2008-10-02 07:34:01 -0700
commit26813f1d37d82ad29a545df7c48fbde82228b80d (patch)
treedb37c57df2afb770593b22b142fc85bd1e672053 /src/DotNetOAuth/Messaging/Channel.cs
parent1b9d589c7ed1cf7648ee7abc9150def40d6274b3 (diff)
downloadDotNetOpenAuth-26813f1d37d82ad29a545df7c48fbde82228b80d.zip
DotNetOpenAuth-26813f1d37d82ad29a545df7c48fbde82228b80d.tar.gz
DotNetOpenAuth-26813f1d37d82ad29a545df7c48fbde82228b80d.tar.bz2
Public API work.
Diffstat (limited to 'src/DotNetOAuth/Messaging/Channel.cs')
-rw-r--r--src/DotNetOAuth/Messaging/Channel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/Messaging/Channel.cs b/src/DotNetOAuth/Messaging/Channel.cs
index fff8f7c..a5cf25f 100644
--- a/src/DotNetOAuth/Messaging/Channel.cs
+++ b/src/DotNetOAuth/Messaging/Channel.cs
@@ -328,7 +328,7 @@ namespace DotNetOAuth.Messaging {
/// Requires an HttpContext.Current context.
/// </remarks>
/// <exception cref="InvalidOperationException">Thrown when <see cref="HttpContext.Current"/> is null.</exception>
- protected virtual HttpRequestInfo GetRequestFromContext() {
+ protected internal virtual HttpRequestInfo GetRequestFromContext() {
if (HttpContext.Current == null) {
throw new InvalidOperationException(MessagingStrings.HttpContextRequired);
}