summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/Channel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-26 15:59:55 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-26 15:59:55 -0700
commit461810cf0d89103d79e6ee0544993ee3991fe80e (patch)
tree08e34f07d05887c7230f5677fe9e47bdd9a9c795 /src/DotNetOpenAuth.Core/Messaging/Channel.cs
parentb9ae2ab289e2b9708ea3cce055ac484b00246a8a (diff)
downloadDotNetOpenAuth-461810cf0d89103d79e6ee0544993ee3991fe80e.zip
DotNetOpenAuth-461810cf0d89103d79e6ee0544993ee3991fe80e.tar.gz
DotNetOpenAuth-461810cf0d89103d79e6ee0544993ee3991fe80e.tar.bz2
More StyleCop fixes.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/Channel.cs')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/Channel.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/Channel.cs b/src/DotNetOpenAuth.Core/Messaging/Channel.cs
index 0ffe2a6..cc61b25 100644
--- a/src/DotNetOpenAuth.Core/Messaging/Channel.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/Channel.cs
@@ -735,19 +735,6 @@ namespace DotNetOpenAuth.Messaging {
}
/// <summary>
- /// Provides derived-types the opportunity to wrap an <see cref="HttpMessageHandler"/> with another one.
- /// </summary>
- /// <param name="innerHandler">The inner handler received from <see cref="IHostFactories"/></param>
- /// <returns>The handler to use in <see cref="HttpClient"/> instances.</returns>
- protected virtual HttpMessageHandler WrapMessageHandler(HttpMessageHandler innerHandler) {
- //TODO: make sure that everyone calls this to wrap their handlers rather than using the one directly returned
- //from IHostFactories.
-
- // No wrapping by default.
- return innerHandler;
- }
-
- /// <summary>
/// Called when receiving a direct response message, before deserialization begins.
/// </summary>
/// <param name="response">The HTTP direct response.</param>