summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/DirectMessageChannel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOAuth/DirectMessageChannel.cs')
-rw-r--r--src/DotNetOAuth/DirectMessageChannel.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/DotNetOAuth/DirectMessageChannel.cs b/src/DotNetOAuth/DirectMessageChannel.cs
deleted file mode 100644
index 147b7d5..0000000
--- a/src/DotNetOAuth/DirectMessageChannel.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="DirectMessageChannel.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOAuth {
- /// <summary>
- /// Manages sending direct messages to a remote party and receiving responses.
- /// </summary>
- internal class DirectMessageChannel {
- /// <summary>
- /// Sends a direct message and returns the response.
- /// </summary>
- /// <param name="message">The message to send.</param>
- /// <returns>The message response.</returns>
- public IProtocolMessage Send(IProtocolMessage message) {
- throw new System.NotImplementedException();
- }
- }
-}