Skip to content

Commit fe43735

Browse files
authored
improve clarity & tone
1 parent 9225ff6 commit fe43735

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/communication-services/quickstarts/telephony/includes/call-automation/redirect-pstn-call-csharp.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ms.author: askaur
2424

2525
## Configure an Event Grid subscription
2626

27-
Call Automation uses Event Grid to deliver the `IncomingCall` event to a subscription of your choice. For this guide, we will use a web hook subscription pointing to your NGROK application proxy address.
27+
Call Automation uses Event Grid to deliver the `IncomingCall` event to a subscription of your choice. For this guide, we'll use a web hook subscription pointing to your NGROK application proxy address.
2828

2929
1. Locate and copy the following to be used in the `armclient` command-line statement below:
3030
- Azure subscription ID
@@ -41,10 +41,10 @@ Call Automation uses Event Grid to deliver the `IncomingCall` event to a subscri
4141
```console
4242
ngrok http https://localhost:<your_web_service_port>
4343
```
44-
This will produce a public URI you can use to receive the events from the Event Grid subscription.
45-
5. Optional: Determine an API route path for the incoming call event together with your NGROK URI which will be used in the armclient command-line statement below, for example: `https://ff2f-75-155-253-232.ngrok.io/api/incomingcall`.
44+
This command will produce a public URI you can use to receive the events from the Event Grid subscription.
45+
5. Optional: Determine an API route path for the incoming call event together with your NGROK URI, which will be used in the armclient command-line statement below, for example: `https://ff2f-75-155-253-232.ngrok.io/api/incomingcall`.
4646
6. Event Grid web hooks require a valid reachable endpoint before they can be created. As such, start your web service application and run the commands below.
47-
7. Since the `IncomingCall` event is not yet published in the portal, you must run the following command-line statements to configure your subscription:
47+
7. Since the `IncomingCall` event isn't yet published in the portal, you must run the following command-line statements to configure your subscription:
4848

4949
```console
5050
armclient login
@@ -62,7 +62,7 @@ In the console window of your operating system, use the `dotnet` command to crea
6262

6363
## Install the NuGet package
6464

65-
During the preview phase the NuGet package can be obtained by configuring your package manager to use the [Azure SDK Dev Feed](https://github.com/Azure/azure-sdk-for-net/blob/main/CONTRIBUTING.md#nuget-package-dev-feed)
65+
During the preview phase, the NuGet package can be obtained by configuring your package manager to use the [Azure SDK Dev Feed](https://github.com/Azure/azure-sdk-for-net/blob/main/CONTRIBUTING.md#nuget-package-dev-feed)
6666

6767
Obtain your connection string and configure your application
6868

@@ -122,4 +122,4 @@ app.Run();
122122
2. Your Event Grid subscription to the IncomingCall should execute and call your web server.
123123
3. The call will be redirected to the endpoint(s) you specified in your application.
124124

125-
Since this call flow involves a redirected call instead of answering it, pre-call web hook callbacks to notify your application the other endpoint accepted the call are not published.
125+
Since this call flow involves a redirected call instead of answering it, pre-call web hook callbacks to notify your application the other endpoint accepted the call aren't published.

0 commit comments

Comments
 (0)