blob: ee65c1fba9ff79680898966da6a3c1c9680122f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//-----------------------------------------------------------------------
// <copyright file="DirectMessageChannel.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging {
/// <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();
}
}
}
|