rabbitmq-tutorials/dotnet-visual-studio
2015-04-28 13:03:41 -04:00
..
1_Receive Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
1_Send Updated assembly infos to match proper project names 2015-04-28 13:03:41 -04:00
2_NewTask Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
2_Worker Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
3_EmitLog Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
3_ReceiveLogs Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
4_EmitLogDirect Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
4_ReceiveLogsDirect Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
5_EmitLogTopic Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
5_ReceiveLogsTopic Updated assembly infos to match proper project names 2015-04-28 13:03:41 -04:00
6_RPCClient Updated assembly infos to match proper project names 2015-04-28 13:03:41 -04:00
6_RPCServer Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
.gitignore Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
RabbitMQ.Tutorials.sln Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
README.md Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00

.NET C# Visual Studio Solution for RabbitMQ tutorials

Here you can find the C# code examples for RabbitMQ tutorials compiled into a Visual Studio solution.

To successfully use the examples you will need a running RabbitMQ server.

NuGet Restore

You may need to "Enable NuGet Package Restore" on the solution upon the first time opening it in order to get the .NET RabbitMQ dependency from NuGet.

Code

Tutorial 1: "Hello World!"

  • 1_Receive
  • 1_Send

Tutorial 2: Work Queues

  • 2_Worker
  • 2_NewTask

Tutorial 3: Publish/Subscribe

  • 3_ReceiveLogs
  • 3_EmitLog

Tutorial 4: Routing

  • 4_ReceiveLogsDirect
  • 4_EmitLogDirect

Tutorial 5: Topics

  • 5_ReceiveLogsTopic
  • 5_EmitLogTopic

Tutorial 6: RPC

  • 6_RPCServer
  • 6_RPCClient