Refactored Channel's virtual and abstract methods to NOT be "internal" (or public).
commit8fd37aa11f6da68ed6366a3f98a89feac7501f1e
authorAndrew Arnott <andrewarnott@gmail.com>
Fri, 12 Sep 2008 05:32:59 +0000 (11 22:32 -0700)
committerAndrew <andrewarnott@gmail.com>
Fri, 12 Sep 2008 05:33:39 +0000 (11 22:33 -0700)
tree108dd73bb3ad7509c1cd73fef75aa6a7c9814bbb
parentf6d28fb14c91c97f6cc8b85c442987082997866a
Refactored Channel's virtual and abstract methods to NOT be "internal" (or public).

This will be useful when we add message signing and verification to the Channel base class.
It's also consistent with design guidelines to never have public (or internal in this case) methods be virtual or abstract so the base class has control over its operations.
src/DotNetOAuth.Test/Mocks/TestBadChannel.cs
src/DotNetOAuth.Test/Mocks/TestChannel.cs
src/DotNetOAuth/Messaging/Channel.cs
src/DotNetOAuth/OAuthChannel.cs