Skip to content

Commit ceafbb3

Browse files
committed
Updated TOC and fixed Nuget
1 parent 8c5029d commit ceafbb3

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

articles/active-directory/managed-identities-azure-resources/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
- name: Azure App Service and Functions
5252
href: /azure/app-service/overview-managed-identity?context=azure/active-directory/managed-identities-azure-resources/context/msi-context
5353
- name: Azure Event Hubs
54-
href: /azure/event-hubs/event-hubs-managed-service-identity?context=azure/active-directory/managed-identities-azure-resources/context/msi-context
54+
href: /azure/event-hubs/authenticate-managed-identity.md?context=azure/active-directory/managed-identities-azure-resources/context/msi-context
5555
- name: Azure Container Instances
5656
href: /azure/container-instances/container-instances-managed-identity?context=azure/active-directory/managed-identities-azure-resources/context/msi-context
5757
- name: How-to guides

articles/event-hubs/authenticate-managed-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Once you've assigned the role, the web application will have access to the Event
7878
#### [Azure.Messaging.EventHubs (latest)](#tab/latest)
7979
You can now launch you web application and point your browser to the sample aspx page. You can find the sample web application that sends and receives data from Event Hubs resources in the [GitHub repo](https://github.com/Azure/azure-event-hubs/tree/master/samples/DotNet/Azure.Messaging.EventHubs/ManagedIdentityWebApp).
8080

81-
Install the latest package from [Nuget](https://www.nuget.org/packages/Azure.Messaging.EventHubs/), and start sending events to Event Hubs using **EventHubProducerClient** and receiving events using **EventHubConsumerClient**.
81+
Install the latest package from [NuGet](https://www.nuget.org/packages/Azure.Messaging.EventHubs/), and start sending events to Event Hubs using **EventHubProducerClient** and receiving events using **EventHubConsumerClient**.
8282

8383
```csharp
8484
protected async void btnSend_Click(object sender, EventArgs e)
@@ -126,7 +126,7 @@ protected async void btnReceive_Click(object sender, EventArgs e)
126126
#### [Microsoft.Azure.EventHubs (legacy)](#tab/old)
127127
You can now launch you web application and point your browser to the sample aspx page. You can find the sample web application that sends and receives data from Event Hubs resources in the [GitHub repo](https://github.com/Azure/azure-event-hubs/tree/master/samples/DotNet/Microsoft.Azure.EventHubs/Rbac/ManagedIdentityWebApp).
128128

129-
Install the latest package from [Nuget](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/), and start sending to and receiving data from Event hubs using the EventHubClient as shown in the following code:
129+
Install the latest package from [NuGet](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/), and start sending to and receiving data from Event hubs using the EventHubClient as shown in the following code:
130130

131131
```csharp
132132
var ehClient = EventHubClient.CreateWithManagedIdentity(new Uri($"sb://{EventHubNamespace}/"), EventHubName);

articles/event-hubs/event-hubs-dotnet-standard-getstarted-send.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Start Visual Studio. From the **File** menu, click **New**, and then click **Pro
4545

4646
![New project](./media/event-hubs-dotnet-standard-getstarted-send/netcoresnd.png)
4747

48-
### Add the Event Hubs Nuget package
48+
### Add the Event Hubs NuGet package
4949

50-
Add the [`Microsoft.Azure.EventHubs`](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) .NET Core library Nuget package to your project by following these steps:
50+
Add the [`Microsoft.Azure.EventHubs`](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) .NET Core library NuGet package to your project by following these steps:
5151

5252
1. Right-click the newly created project and select **Manage NuGet Packages**.
5353
2. Click the **Browse** tab, then search for "Microsoft.Azure.EventHubs" and select the **Microsoft.Azure.EventHubs** package. Click **Install** to complete the installation, then close this dialog box.
@@ -207,9 +207,9 @@ Start Visual Studio. From the **File** menu, click **New**, and then click **Pro
207207

208208
![New project](./media/event-hubs-dotnet-standard-getstarted-receive-eph/netcorercv.png)
209209

210-
### Add the Event Hubs Nuget package
210+
### Add the Event Hubs NuGet package
211211

212-
Add the [**Microsoft.Azure.EventHubs**](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) and [**Microsoft.Azure.EventHubs.Processor**](https://www.nuget.org/packages/Microsoft.Azure.EventHubs.Processor/) .NET Standard library Nuget packages to your project by following these steps:
212+
Add the [**Microsoft.Azure.EventHubs**](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) and [**Microsoft.Azure.EventHubs.Processor**](https://www.nuget.org/packages/Microsoft.Azure.EventHubs.Processor/) .NET Standard library NuGet packages to your project by following these steps:
213213
214214
1. Right-click the newly created project and select **Manage NuGet Packages**.
215215
2. Click the **Browse** tab, search for **Microsoft.Azure.EventHubs**, and then select the **Microsoft.Azure.EventHubs** package. Click **Install** to complete the installation, then close this dialog box.

articles/event-hubs/event-hubs-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You send events to an event hub either using HTTP POST or via an AMQP 1.0 connec
2626
When using the .NET managed APIs, the primary constructs for publishing data to Event Hubs are the [EventHubClient][] and [EventData][] classes. [EventHubClient][] provides the AMQP communication channel over which events are sent to the event hub. The [EventData][] class represents an event, and is used to publish messages to an event hub. This class includes the body, some metadata(Properties), and header information(SystemProperties) about the event. Other properties are added to the [EventData][] object as it passes through an event hub.
2727

2828
## Get started
29-
The .NET classes that support Event Hubs are provided in the [Microsoft.Azure.EventHubs](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) Nuget package. You can install using the Visual Studio Solution explorer, or the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) in Visual Studio. To do so, issue the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) window:
29+
The .NET classes that support Event Hubs are provided in the [Microsoft.Azure.EventHubs](https://www.nuget.org/packages/Microsoft.Azure.EventHubs/) NuGet package. You can install using the Visual Studio Solution explorer, or the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) in Visual Studio. To do so, issue the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) window:
3030

3131
```shell
3232
Install-Package Microsoft.Azure.EventHubs

articles/event-hubs/get-started-dotnet-standard-send-v2.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ This section shows you how to create a .NET Core console application to send eve
4949

5050
![C# > Console app](./media/getstarted-dotnet-standard-send-v2/project-solution-names.png)
5151

52-
### Add the Event Hubs Nuget package
52+
### Add the Event Hubs NuGet package
5353

5454
1. Select **Tools** > **NuGet Package Manager** > **Package Manager Console** from the menu.
55-
1. Run the following command to install the **Azure.Messaging.EventHubs** Nuget package:
55+
1. Run the following command to install the **Azure.Messaging.EventHubs** NuGet package:
5656

5757
```cmd
5858
Install-Package Azure.Messaging.EventHubs -Version 5.0.0
@@ -128,15 +128,15 @@ In this quickstart, you use Azure Storage as the checkpoint store. Follow these
128128
1. Select **Console App (.NET Core)**, and select **Next**.
129129
1. Event **EventHubsReceiver** for the **Project name**, and select **Create**.
130130
131-
### Add the Event Hubs Nuget package
131+
### Add the Event Hubs NuGet package
132132
133133
1. Select **Tools** > **NuGet Package Manager** > **Package Manager Console** from the menu.
134-
1. Run the following command to install the **Azure.Messaging.EventHubs** Nuget package:
134+
1. Run the following command to install the **Azure.Messaging.EventHubs** NuGet package:
135135
136136
```cmd
137137
Install-Package Azure.Messaging.EventHubs -Version 5.0.0
138138
```
139-
1. Run the following command to install the **Azure.Messaging.EventHubs.Processor** Nuget package:
139+
1. Run the following command to install the **Azure.Messaging.EventHubs.Processor** NuGet package:
140140
141141
```cmd
142142
Install-Package Azure.Messaging.EventHubs.Processor -Version 5.0.0

0 commit comments

Comments
 (0)