//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOAuth { /// /// Manages sending direct messages to a remote party and receiving responses. /// internal class DirectMessageChannel { /// /// Sends a direct message and returns the response. /// /// The message to send. /// The message response. public IProtocolMessage Send(IProtocolMessage message) { throw new System.NotImplementedException(); } } }