diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-01 16:15:36 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-01 16:16:29 -0700 |
commit | fe89b650595d828f44270ee1226d72e945f7260c (patch) | |
tree | 7994fbbb23abc7ff0751ac9bb0d8cdb93bc32f6b /src/DotNetOAuth/DirectMessageChannel.cs | |
parent | 4e83c2d321f57cac5e5605097faf15bf1b46efa5 (diff) | |
download | DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.zip DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.gz DotNetOpenAuth-fe89b650595d828f44270ee1226d72e945f7260c.tar.bz2 |
Moved messaging infrastructure to its own namespace.
Diffstat (limited to 'src/DotNetOAuth/DirectMessageChannel.cs')
-rw-r--r-- | src/DotNetOAuth/DirectMessageChannel.cs | 21 |
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();
- }
- }
-}
|