In order to run the sample in this directory, replace the following bracketed values in the Program.cs
file.
private const string ServiceBusConnectionString = "{Service Bus connection string}";
private const string QueueName = "{Queue path/name}";
Once you replace the above values run the following from a command prompt:
dotnet restore
dotnet build
dotnet run
For further information on how to create this sample on your own, follow the rest of the tutorial.
In this tutorial, we will write a console application to send messages to a Service Bus queue.
- .NET Core
- An Azure subscription.
- A Service Bus namespace
- A Service Bus queue
- Create a new .NET Core application. Check out this link with help to create a new application on your operating system.
-
Add the following to your project.json, making sure that the solution references the
Microsoft.Azure.ServiceBus
project."Microsoft.Azure.ServiceBus": { "target": "project" }
-
Add the following using statement to the top of the Program.cs file.
using Microsoft.Azure.ServiceBus;
-
Add the following private variables to the
Program
class, and replace the placeholder values:private static QueueClient queueClient; private const string ServiceBusConnectionString = "{Service Bus connection string}"; private const string QueueName = "{Queue path/name}";
-
Create a new method called
SendMessagesToQueue
with the following code:// Creates a Queue client and sends 10 messages to the queue. private static async Task SendMessagesToQueue(int numMessagesToSend) { for (var i = 0; i < numMessagesToSend; i++) { try { // Create a new brokered message to send to the queue var message = new BrokeredMessage($"Message {i}"); // Write the body of the message to the console Console.WriteLine($"Sending message: {message.GetBody<string>()}"); // Send the message to the queue await queueClient.SendAsync(message); } catch (Exception exception) { Console.WriteLine($"{DateTime.Now} > Exception: {exception.Message}"); } // Delay by 10 milliseconds so that the console can keep up await Task.Delay(10); } Console.WriteLine($"{numMessagesToSend} messages sent."); }
-
Create a new method called
MainAsync
with the following code:private static async Task MainAsync(string[] args) { // Creates a ServiceBusConnectionStringBuilder object from the connection string, and sets the EntityPath. var connectionStringBuilder = new ServiceBusConnectionStringBuilder(ServiceBusConnectionString) { EntityPath = QueueName }; // Initializes the static QueueClient variable that will be used in the ReceiveMessages method. queueClient = QueueClient.CreateFromConnectionString(connectionStringBuilder.ToString()); await SendMessagesToQueue(10); // Close the client after the ReceiveMessages method has exited. await queueClient.CloseAsync(); Console.WriteLine("Press any key to exit."); Console.ReadLine(); }
-
Add the following code to the
Main
method:MainAsync(args).GetAwaiter().GetResult();
-
Run the program, and check the Azure portal. Click the name of your queue in the namespace Overview blade. Notice that the Active message count value should now be 10.
Congratulations! You have now sent messages to a Service Bus queue, using .NET Core.