Mercurial > silverbladetech
annotate Messaging/Common/Settings.cs @ 97:1adc1ae981ea
Tests added to SilverlightValidation.Tests
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sat, 05 May 2012 16:39:00 +0100 |
parents | 874e51b94623 |
children |
rev | line source |
---|---|
26 | 1 namespace Common |
2 { | |
3 public class Settings | |
4 { | |
31 | 5 public const string MsmqQueueName = @".\private$\Queue#1"; |
27 | 6 public const int RabbitPortNumber = 5672; |
29 | 7 public const string RabbitQueueName = "Queue#2"; |
34
874e51b94623
ZeroMq uses different style of address for client and server
adminsh@apollo
parents:
31
diff
changeset
|
8 public const string ZeroMqServerAddress = "tcp://*:5555"; |
874e51b94623
ZeroMq uses different style of address for client and server
adminsh@apollo
parents:
31
diff
changeset
|
9 public const string ZeroMqClientAddress = "tcp://localhost:5555"; |
26 | 10 } |
11 } |