Skip to content

Commit 00421ed

Browse files
committed
update
1 parent f11cc43 commit 00421ed

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

articles/service-bus-messaging/includes/service-bus-passwordless-template-tabbed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A client can use the connection string to connect to the Service Bus namespace.
2828
You can use this page to copy primary key, secondary key, primary connection string, and secondary connection string.
2929

3030

31-
## [Passwordless (Recommended)](#tab/passwordless)
31+
## [Passwordless](#tab/passwordless)
3232

3333
## Authenticate the app to Azure
3434

articles/service-bus-messaging/service-bus-dotnet-get-started-with-queues.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this quickstart, you will do the following steps:
1818
4. Write a .NET console application to receive those messages from the queue.
1919

2020
> [!NOTE]
21-
> This quick start provides step-by-step instructions to implement a simple scenario of sending a batch of messages to a Service Bus queue and then receiving them. For an overview of the .NET client library, see [Azure Service Bus client library for .NET](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/servicebus/Azure.Messaging.ServiceBus/README.md). For more samples, see [Service Bus .NET samples on GitHub](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/servicebus/Azure.Messaging.ServiceBus/samples).
21+
> - This quick start provides step-by-step instructions to implement a simple scenario of sending a batch of messages to a Service Bus queue and then receiving them. For an overview of the .NET client library, see [Azure Service Bus client library for .NET](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/servicebus/Azure.Messaging.ServiceBus/README.md). For more samples, see [Service Bus .NET samples on GitHub](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/servicebus/Azure.Messaging.ServiceBus/samples).
2222
2323
## Prerequisites
2424

@@ -33,7 +33,7 @@ If you're new to the service, see [Service Bus overview](service-bus-messaging-o
3333
> [!IMPORTANT]
3434
> Note down the connection string to the namespace, the topic name, and the subscription name. You'll use them later in this tutorial.
3535
36-
## [Passwordless (Recommended)](#tab/passwordless)
36+
## [Passwordless](#tab/passwordless)
3737
[!INCLUDE [service-bus-create-namespace-portal-passwordless](./includes/service-bus-create-namespace-portal-passwordless.md)]
3838

3939
---
@@ -147,7 +147,7 @@ This section shows you how to create a .NET console application to send messages
147147
Console.ReadKey();
148148
```
149149
150-
### [Passwordless (Recommended)](#tab/passwordless)
150+
### [Passwordless](#tab/passwordless)
151151
152152
> [!IMPORTANT]
153153
> Per the `TODO` comment, update the placeholder values in the code snippets with the values from the Service Bus you created.
@@ -270,7 +270,7 @@ In this section, you'll create a .NET console application that receives messages
270270
271271
:::image type="content" source="media/service-bus-dotnet-get-started-with-queues/package-manager-console.png" alt-text="Screenshot showing QueueReceiver project selected in the Package Manager Console.":::
272272
273-
### [Passwordless (Recommended)](#tab/passwordless)
273+
### [Passwordless](#tab/passwordless)
274274
275275
1. Select **Tools** > **NuGet Package Manager** > **Package Manager Console** from the menu.
276276
1. Run the following command to install the **Azure.Messaging.ServiceBus** and **Azure.Identity** NuGet packages:
@@ -304,7 +304,7 @@ In this section, you'll add code to retrieve messages from the queue.
304304
ServiceBusProcessor processor;
305305
```
306306
307-
### [Passwordless (Recommended)](#tab/passwordless)
307+
### [Passwordless](#tab/passwordless)
308308
309309
```csharp
310310
using System.Threading.Tasks;
@@ -397,7 +397,7 @@ In this section, you'll add code to retrieve messages from the queue.
397397
}
398398
```
399399
400-
### [Passwordless (Recommended)](#tab/passwordless)
400+
### [Passwordless](#tab/passwordless)
401401
402402
* Creates a [ServiceBusClient](/dotnet/api/azure.messaging.servicebus.servicebusclient) object using the `DefaultAzureCredential` object. `DefaultAzureCredential` will automatically discover and use the credentials of your Visual Studio login to authenticate to Azure Service Bus.
403403
* Invokes the [CreateProcessor](/dotnet/api/azure.messaging.servicebus.servicebusclient.createprocessor) method on the `ServiceBusClient` object to create a [ServiceBusProcessor](/dotnet/api/azure.messaging.servicebus.servicebusprocessor) object for the specified Service Bus queue.
@@ -535,7 +535,7 @@ In this section, you'll add code to retrieve messages from the queue.
535535
}
536536
```
537537
538-
### [Passwordless (Recommended)](#tab/passwordless)
538+
### [Passwordless](#tab/passwordless)
539539
540540
```csharp
541541
using System.Threading.Tasks;

articles/service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you're new to the service, see [Service Bus overview](service-bus-messaging-o
4343
> [!IMPORTANT]
4444
> Note down the connection string to the namespace, the topic name, and the subscription name. You'll use them later in this tutorial.
4545
46-
## [Passwordless (Recommended)](#tab/passwordless)
46+
## [Passwordless](#tab/passwordless)
4747
[!INCLUDE [service-bus-create-namespace-portal-passwordless](./includes/service-bus-create-namespace-portal-passwordless.md)]
4848

4949
---
@@ -147,7 +147,7 @@ This section shows you how to create a .NET console application to send messages
147147
Console.ReadKey();
148148
```
149149
150-
## [Passwordless (Recommended)](#tab/passwordless)
150+
## [Passwordless](#tab/passwordless)
151151
152152
1. Creates a [ServiceBusClient](/dotnet/api/azure.messaging.servicebus.servicebusclient) object using the connection string to the namespace.
153153
1. Invokes the [CreateSender](/dotnet/api/azure.messaging.servicebus.servicebusclient.createsender) method on the `ServiceBusClient` object to create a [ServiceBusSender](/dotnet/api/azure.messaging.servicebus.servicebussender) object for the specific Service Bus topic.
@@ -258,7 +258,7 @@ In this section, you'll create a .NET console application that receives messages
258258
259259
:::image type="content" source="media/service-bus-dotnet-get-started-with-queues/package-manager-console.png" alt-text="Screenshot showing QueueReceiver project selected in the Package Manager Console.":::
260260
261-
### [Passwordless (Recommended)](#tab/passwordless)
261+
### [Passwordless](#tab/passwordless)
262262
263263
1. Select **Tools** > **NuGet Package Manager** > **Package Manager Console** from the menu.
264264
1. Run the following command to install the **Azure.Messaging.ServiceBus** and **Azure.Identity** NuGet packages:
@@ -310,7 +310,7 @@ In this section, you'll add code to retrieve messages from the subscription.
310310
}
311311
```
312312
313-
## [Passwordless (Recommended)](#tab/passwordless)
313+
## [Passwordless](#tab/passwordless)
314314
315315
```csharp
316316
using System.Threading.Tasks;
@@ -395,7 +395,7 @@ In this section, you'll add code to retrieve messages from the subscription.
395395
}
396396
```
397397
398-
## [Passwordless (Recommended)](#tab/passwordless)
398+
## [Passwordless](#tab/passwordless)
399399
400400
* Creates a [ServiceBusClient](/dotnet/api/azure.messaging.servicebus.servicebusclient) object using the passwordless `DefaultAzureCredential` object.
401401
* Invokes the [CreateProcessor](/dotnet/api/azure.messaging.servicebus.servicebusclient.createprocessor) method on the `ServiceBusClient` object to create a [ServiceBusProcessor](/dotnet/api/azure.messaging.servicebus.servicebusprocessor) object for the specified Service Bus topic.
@@ -522,7 +522,7 @@ In this section, you'll add code to retrieve messages from the subscription.
522522
}
523523
```
524524
525-
## [Passwordless (Recommended)](#tab/passwordless)
525+
## [Passwordless](#tab/passwordless)
526526
527527
```csharp
528528
using System;

includes/functions-service-bus-connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If the configured value is both an exact match for a single setting and a prefix
1717

1818
### Connection string
1919

20-
To obtain a connection string, follow the steps shown at [Get the management credentials](../articles/service-bus-messaging/service-bus-quickstart-portal.md#get-the-connection-string). The connection string must be for a Service Bus namespace, not limited to a specific queue or topic.
20+
To obtain a connection string, follow the steps shown at [Get the management credentials](../articles/service-bus-messaging/service-bus-dotnet-get-started-with-queues.md#get-the-connection-string). The connection string must be for a Service Bus namespace, not limited to a specific queue or topic.
2121

2222
This connection string should be stored in an application setting with a name matching the value specified by the `connection` property of the binding configuration.
2323

0 commit comments

Comments
 (0)