Skip to content

Commit 0eb6f33

Browse files
committed
Updated basedon Javier's feedback
1 parent 5cd0d9c commit 0eb6f33

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ This quickstart shows how to send events to and receive events from an event hub
2626

2727

2828
## Prerequisites
29-
If you are new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
29+
If you're new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
3030

3131
To complete this quickstart, you need the following prerequisites:
3232

3333
- **Microsoft Azure subscription**. To use Azure services, including Azure Event Hubs, you need a subscription. If you don't have an existing Azure account, you can sign up for a [free trial](https://azure.microsoft.com/free/) or use your MSDN subscriber benefits when you [create an account](https://azure.microsoft.com).
34-
- **Microsoft Visual Studio 2019**. The Azure Event Hubs client library makes use of new features that were introduced in C# 8.0. You can still use the library with older versions of C#, but some of its functionality won't be available. To enable these features, you must [target .NET Core 3.0](/dotnet/standard/frameworks#how-to-specify-target-frameworks) or [specify the language version](/dotnet/csharp/language-reference/configure-language-version#override-a-default) you want to use (8.0 or above). If you're using Visual Studio, versions prior to Visual Studio 2019 aren't compatible with the tools needed to build C# 8.0 projects. Visual Studio 2019, including the free Community edition, can be downloaded [here](https://visualstudio.microsoft.com/vs/)
34+
- **Microsoft Visual Studio 2019**. The Azure Event Hubs client library makes use of new features that were introduced in C# 8.0. You can still use the library with older versions of C#, but some of its functionality won't be available. To enable these features, you must [target .NET Core 3.0](/dotnet/standard/frameworks#how-to-specify-target-frameworks) or [specify the language version](/dotnet/csharp/language-reference/configure-language-version#override-a-default) you want to use (8.0 or above). If you're using Visual Studio, versions before Visual Studio 2019 aren't compatible with the tools needed to build C# 8.0 projects. Visual Studio 2019, including the free Community edition, can be downloaded [here](https://visualstudio.microsoft.com/vs/)
3535
- **Create an Event Hubs namespace and an event hub**. The first step is to use the [Azure portal](https://portal.azure.com) to create a namespace of type Event Hubs, and obtain the management credentials your application needs to communicate with the event hub. To create a namespace and an event hub, follow the procedure in [this article](event-hubs-create.md). Then, get the **connection string for the Event Hubs namespace** by following instructions from the article: [Get connection string](event-hubs-get-connection-string.md#get-connection-string-from-the-portal). You use the connection string later in this quickstart.
3636

3737
## Send events
@@ -125,7 +125,7 @@ In this quickstart, you use Azure Storage as the checkpoint store. Follow these
125125
2. [Create a blob container](../storage/blobs/storage-quickstart-blobs-portal.md#create-a-container)
126126
3. [Get the connection string to the storage account](../storage/common/storage-configure-connection-string.md?#view-and-copy-a-connection-string)
127127
128-
Note down the connection string and the container name. You will use them in the receive code.
128+
Note down the connection string and the container name. You'll use them in the receive code.
129129
130130
131131
### Create a project for the receiver

articles/event-hubs/get-started-java-send-v2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This quickstart shows how to send events to and receive events from an event hub
2020
2121

2222
## Prerequisites
23-
If you are new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
23+
If you're new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
2424

2525
To complete this quickstart, you need the following prerequisites:
2626

@@ -33,7 +33,7 @@ This section shows you how to create a Java application to send events an event
3333

3434
### Add reference to Azure Event Hubs library
3535

36-
The Java client library for Event Hubs is available for use in Maven projects from the [Maven Central Repository](https://search.maven.org/search?q=a:azure-messaging-eventhubs). You can reference this library using the following dependency declaration inside your Maven project file:
36+
The Java client library for Event Hubs is available in the [Maven Central Repository](https://search.maven.org/search?q=a:azure-messaging-eventhubs). You can reference this library using the following dependency declaration inside your Maven project file:
3737

3838
```xml
3939
<dependency>
@@ -132,7 +132,7 @@ public class Sender {
132132
}
133133
```
134134

135-
Build the program, and ensure that there are no errors. You will run this program after you run the receiver program.
135+
Build the program, and ensure that there are no errors. You'll run this program after you run the receiver program.
136136

137137
## Receive events
138138
The code in this tutorial is based on the [EventProcessorClient sample on GitHub](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/eventhubs/azure-messaging-eventhubs/src/samples/java/com/azure/messaging/eventhubs/EventProcessorClientSample.java), which you can examine to see the full working application.

articles/event-hubs/get-started-python-send-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This quickstart shows how to send events to and receive events from an event hub
1919
> This quickstart uses the latest azure-eventhub version 5 package. For a quick start that uses the old azure-eventhub version 1 package, see [Send and receive events using azure-eventhub version 1](event-hubs-python-get-started-send.md).
2020
2121
## Prerequisites
22-
If you are new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
22+
If you're new to Azure Event Hubs, see [Event Hubs overview](event-hubs-about.md) before you do this quickstart.
2323

2424
To complete this quickstart, you need the following prerequisites:
2525

0 commit comments

Comments
 (0)