summaryrefslogtreecommitdiff
path: root/trunk/qpid/dotnet/client-010/client/client/IClientSession.cs
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/qpid/dotnet/client-010/client/client/IClientSession.cs')
-rw-r--r--trunk/qpid/dotnet/client-010/client/client/IClientSession.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/trunk/qpid/dotnet/client-010/client/client/IClientSession.cs b/trunk/qpid/dotnet/client-010/client/client/IClientSession.cs
deleted file mode 100644
index b8bc7e4db8..0000000000
--- a/trunk/qpid/dotnet/client-010/client/client/IClientSession.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Collections.Generic;
-using org.apache.qpid.transport;
-
-namespace org.apache.qpid.client
-{
- public interface IClientSession : ISession
- {
- void AttachMessageListener(IMessageListener listener, string Destination);
- Dictionary<String, IMessageListener> MessageListeners { get; }
- void MessageTransfer(String destination, string routingkey, IMessage message);
- void MessageTransfer(String destination, IMessage message);
- void QueueDeclare(String queue);
- void QueueDeclare(String queue, params Option[] options);
- void ExchangeBind(String queue, String exchange, String bindingKey);
- void MessageSubscribe(String queue);
- }
-}