rabbitmq-tutorials/dotnet-visual-studio
Jason Nguyen ec132af1d5
Update README.md
remove extra 'tutorials' from URL
2019-09-18 16:22:07 -06:00
..
.nuget Fix nuget package restore 2015-06-22 21:26:07 +05:00
1_Receive URL Cleanup 2019-03-20 03:25:16 -05:00
1_Send URL Cleanup 2019-03-20 03:25:16 -05:00
2_NewTask URL Cleanup 2019-03-20 03:25:16 -05:00
2_Worker URL Cleanup 2019-03-20 03:25:16 -05:00
3_EmitLog feat: avoid using magic strings 2019-08-12 14:34:49 +02:00
3_ReceiveLogs feat: avoid using magic strings 2019-08-12 14:34:49 +02:00
4_EmitLogDirect URL Cleanup 2019-03-20 03:25:16 -05:00
4_ReceiveLogsDirect URL Cleanup 2019-03-20 03:25:16 -05:00
5_EmitLogTopic URL Cleanup 2019-03-20 03:25:16 -05:00
5_ReceiveLogsTopic URL Cleanup 2019-03-20 03:25:16 -05:00
6_RPCClient URL Cleanup 2019-03-20 03:25:16 -05:00
6_RPCServer URL Cleanup 2019-03-20 03:25:16 -05:00
7_PublisherConfirms Tutorial 7 PublisherConfirms 2019-09-18 16:11:38 -06:00
.gitignore Ported .net examples to a visual studio solution 2015-04-28 12:59:10 -04:00
RabbitMQ.Tutorials.sln Tutorial 7 PublisherConfirms 2019-09-18 16:11:38 -06:00
README.md Update README.md 2019-09-18 16:22:07 -06: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

Tutorial 7: Publisher Confirms

  • 7_PublisherConfirms