Skip to content

Commit bd544f6

Browse files
committed
edit pass: record-calls
1 parent 3deaaa8 commit bd544f6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-ios.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You're not going to create tests during this quickstart. Feel free to clear the
1818

1919
### Install the package and dependencies by using CocoaPods
2020

21-
1. Create a Podfile for your application, like this:
21+
1. Create a Podfile for your application, like this example:
2222

2323
```
2424
platform :ios, '13.0'
@@ -32,9 +32,9 @@ You're not going to create tests during this quickstart. Feel free to clear the
3232
3333
### Request access to the microphone
3434
35-
To access the device's microphone, you need to update your app's information property list with `NSMicrophoneUsageDescription`. You set the associated value to a string that will be included in the dialog that the system uses to request access from the user.
35+
To access the device's microphone, you need to update your app's information property list by using `NSMicrophoneUsageDescription`. You set the associated value to a string that will be included in the dialog that the system uses to request access from the user.
3636
37-
Right-click the `Info.plist` entry of the project tree, and then select **Open As** > **Source Code**. Add the following lines in the top-level `<dict>` section, and then save the file.
37+
Right-click the *Info.plist* entry of the project tree, and then select **Open As** > **Source Code**. Add the following lines in the top-level `<dict>` section, and then save the file.
3838
3939
```xml
4040
<key>NSMicrophoneUsageDescription</key>
@@ -77,7 +77,7 @@ public func fetchTokenSync(then onCompletion: TokenRefreshOnCompletion) {
7777
}
7878
```
7979

80-
Pass the `CommunicationTokenCredential` object that you created to `CallClient`, and set the display name.
80+
Pass the `CommunicationTokenCredential` object that you created to `CallClient`, and set the display name:
8181

8282
```swift
8383
self.callClient = CallClient()

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ ms.topic: include
55
ms.date: 05/30/2023
66
ms.author: jowang
77
---
8-
## Setting up
8+
## Set up
99

1010
### Create the Visual Studio project
1111

12-
For UWP app, in Visual Studio 2022, create a new `Blank App (Universal Windows)` project. After entering the project name, feel free to pick any Windows SDK later than `10.0.17763.0`.
12+
For a UWP app, in Visual Studio 2022, create a new **Blank App (Universal Windows)** project. After you enter the project name, feel free to choose any Windows SDK later than 10.0.17763.0.
1313

14-
For a WinUI 3 app, create a new project with the `Blank App, Packaged (WinUI 3 in Desktop)` template to set up a single-page WinUI 3 app. [Windows App SDK version 1.3](/windows/apps/windows-app-sdk/stable-channel#version-13) or later is required.
14+
For a WinUI 3 app, create a new project with the **Blank App, Packaged (WinUI 3 in Desktop)** template to set up a single-page WinUI 3 app. [Windows App SDK version 1.3](/windows/apps/windows-app-sdk/stable-channel#version-13) or later is required.
1515

16-
### Install the package and dependencies with NuGet Package Manager
16+
### Install the package and dependencies by using NuGet Package Manager
1717

1818
The Calling SDK APIs and libraries are publicly available via a NuGet package.
1919

2020
The following steps exemplify how to find, download, and install the Calling SDK NuGet package:
2121

2222
1. Open NuGet Package Manager (**Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**).
23-
2. Select **Browse**, and then enter **Azure.Communication.Calling.WindowsClient** in the search box.
23+
2. Select **Browse**, and then enter `Azure.Communication.Calling.WindowsClient` in the search box.
2424
3. Make sure that the **Include prerelease** check box is selected.
2525
4. Select the `Azure.Communication.Calling.WindowsClient` package, and then select `Azure.Communication.Calling.WindowsClient` [1.4.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.4.0-beta.1) or a newer version.
2626
5. Select the checkbox that corresponds to the Communication Services project on the right-side tab.

articles/communication-services/how-tos/calling-sdk/includes/record-calls/record-calls-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ let serverCallId = call.info.getServerCallId(){ (serverId, error) in }
4949

5050
When you start recording from the server, the event `didChangeRecordingState` is triggered and the value of `recordingFeature.isRecordingActive` is `true`.
5151

52-
Just like starting the call recording, if you want to stop the call recording, you need to get the `ServerCallId` and send it to your recording server so that it can stop the recording.
52+
Just like starting the call recording, if you want to stop the call recording, you need to get `ServerCallId` and send it to your recording server so that it can stop the recording:
5353

5454
```swift
5555
// Send serverCallId to your recording server to stop the call recording.

0 commit comments

Comments
 (0)