1
//-----------------------------------------------------------------------
2 // <copyright file="TestChannel.cs" company="Andrew Arnott">
3 // Copyright (c) Andrew Arnott. All rights reserved.
5 //-----------------------------------------------------------------------
7 namespace DotNetOAuth
.Test
.Mocks
{
9 using System
.Collections
.Generic
;
12 using DotNetOAuth
.Messaging
;
14 internal class TestChannel
: Channel
{
15 internal TestChannel()
16 : base(new TestMessageTypeProvider()) {
19 protected override IProtocolMessage
RequestInternal(IDirectedProtocolMessage request
) {
20 throw new NotImplementedException("Request");
23 protected override IProtocolMessage
ReadFromResponseInternal(System
.IO
.Stream responseStream
) {
24 throw new NotImplementedException("ReadFromResponse");
27 protected override void SendDirectMessageResponse(IProtocolMessage response
) {
28 throw new NotImplementedException("SendDirectMessageResponse");