summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Messaging
diff options
context:
space:
mode:
authorRupert Smith <rupertlssmith@apache.org>2007-08-10 15:26:02 +0000
committerRupert Smith <rupertlssmith@apache.org>2007-08-10 15:26:02 +0000
commit577f0f94b1603c4f72f1ca4071ebe8e7cc10775a (patch)
tree08a494ba6e996f1c2f6747c3ec113eb48467df68 /dotnet/Qpid.Messaging
parent7db3e48be0df04c7b315d0db56f1bb7f602f4f8a (diff)
downloadqpid-python-577f0f94b1603c4f72f1ca4071ebe8e7cc10775a.tar.gz
.Net now handles binding URLs correctly.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@564618 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Messaging')
-rw-r--r--dotnet/Qpid.Messaging/ExchangeNameDefaults.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/dotnet/Qpid.Messaging/ExchangeNameDefaults.cs b/dotnet/Qpid.Messaging/ExchangeNameDefaults.cs
index cda92d6b55..2689fb5e46 100644
--- a/dotnet/Qpid.Messaging/ExchangeNameDefaults.cs
+++ b/dotnet/Qpid.Messaging/ExchangeNameDefaults.cs
@@ -24,6 +24,19 @@ namespace Apache.Qpid.Messaging
{
public readonly static string TOPIC = "amq.topic";
public readonly static string DIRECT = "amq.direct";
- public readonly static string HEADERS = "amq.match";
+ public readonly static string HEADERS = "amq.match";
+ public readonly static string FANOUT = "amq.fanout";
+
+ /// <summary> Defines the identifying type name of topic exchanges. </summary>
+ public readonly static string TOPIC_EXCHANGE_CLASS = "topic";
+
+ /// <summary> Defines the identifying type name of direct exchanges. </summary>
+ public readonly static string DIRECT_EXCHANGE_CLASS = "direct";
+
+ /// <summary> Defines the identifying type name of headers exchanges. </summary>
+ public readonly static string HEADERS_EXCHANGE_CLASS = "headers";
+
+ /// <summary> Defines the identifying type name of fanout exchanges. </summary>
+ public readonly static string FANOUT_EXCHANGE_CLASS = "fanout";
}
}