Skip to content

Commit e5f49e1

Browse files
committed
ready to publish
1 parent ed7bcd1 commit e5f49e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,14 @@ In this quickstart, you use Azure Storage as the checkpoint store. Follow these
203203

204204
1. [Create an Azure Storage account](../storage/common/storage-account-create.md?tabs=azure-portal)
205205
2. [Create a blob container](../storage/blobs/storage-quickstart-blobs-portal.md#create-a-container)
206-
3. Authenticate to the blob container
206+
3. Authenticate to the blob container using either Azure AD (passwordless) authentication or a connection string to the namespace.
207207

208208
## [Passwordless (Recommended)](#tab/passwordless)
209209

210210
[!INCLUDE [event-hub-storage-assign-roles](../../includes/passwordless/event-hub/event-hub-storage-assign-roles.md)]
211211
## [Connection String](#tab/connection-string)
212212

213-
[Get the connection string to the storage account](../storage/common/storage-configure-connection-string.md)
213+
[Get the connection string to the storage account](../storage/common/storage-account-get-info#get-a-connection-string-for-the-storage-account)
214214

215215
Note down the connection string and the container name. You use them in the receive code.
216216

@@ -357,7 +357,7 @@ await Task.Delay(TimeSpan.FromSeconds(30));
357357
// Stop the processing
358358
await processor.StopProcessingAsync();
359359

360-
async Task ProcessEventHandler(ProcessEventArgs eventArgs)
360+
Task ProcessEventHandler(ProcessEventArgs eventArgs)
361361
{
362362
// Write the body of the event to the console window
363363
Console.WriteLine("\tReceived event: {0}", Encoding.UTF8.GetString(eventArgs.Data.Body.ToArray()));

0 commit comments

Comments
 (0)