annotate Messaging/Common/Settings.cs @ 85:4863009a2edf

renamed bugs to todo
author Steven Hollidge <stevenhollidge@hotmail.com>
date Tue, 24 Apr 2012 00:52:39 +0100
parents 874e51b94623
children
rev   line source
26
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
1 namespace Common
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
2 {
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
3 public class Settings
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
4 {
31
7d9de5746f18 Working version
adminsh@apollo
parents: 29
diff changeset
5 public const string MsmqQueueName = @".\private$\Queue#1";
27
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents: 26
diff changeset
6 public const int RabbitPortNumber = 5672;
29
9919ee227c93 msmq added
adminsh@apollo
parents: 27
diff changeset
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
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
10 }
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
11 }