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.cs18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/DotNetOAuth/DirectMessageChannel.cs b/src/DotNetOAuth/DirectMessageChannel.cs
index 2ece51d..147b7d5 100644
--- a/src/DotNetOAuth/DirectMessageChannel.cs
+++ b/src/DotNetOAuth/DirectMessageChannel.cs
@@ -1,6 +1,20 @@
-namespace DotNetOAuth {
+//-----------------------------------------------------------------------
+// <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 {
- public void Send(IProtocolMessage message) {
+ /// <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();
}
}