Skip to content

Commit f385608

Browse files
committed
update connect description
1 parent ccf6fc2 commit f385608

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/communication-services/how-tos/call-automation/actions-for-call-control.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@ The response provides you with CallConnection object that you can use to take fu
168168

169169
## Connect to a call
170170

171-
You can connect to a call using a call locator. When connecting a call, it's necessary to provide a callback url. Communication Services post all subsequent events about this call to that url.
171+
You can create a connection to a call using CallLocator, then you can manage the call and perform actions in the call using Call Automation.
172172

173-
Currently, we have 3 different CallLocators:
173+
Currently, we support 3 different CallLocators:ServerCallLocator, GroupCallLocator and RoomCallLocator
174174

175-
Connecting to a call using ServerCallLocator
175+
Connecting to a call using ServerCallLocator, which take a serverCallId. You can use it to connect to regular P2P or multi-parties call.
176176
### [csharp](#tab/csharp)
177177

178178
```csharp
@@ -207,7 +207,7 @@ call_connection_properties = client.connect_call(call_locator=server_call_locato
207207

208208
-----
209209

210-
Connecting to a call using GroupCallLocator
210+
Connecting to a call using GroupCallLocator, which takes a GroupCallId. You can use it to connect to a group call created using GroupCallId
211211
### [csharp](#tab/csharp)
212212

213213
```csharp
@@ -242,12 +242,12 @@ call_connection_properties = client.connect_call(call_locator=group_call_locator
242242

243243
-----
244244

245-
Connecting to a call using RoomCallLocator
245+
Connecting to a call using RoomCallLocator, which takes a RoomId. You can use it to connect to call for a Room, usually used for Virtual meetings
246246
### [csharp](#tab/csharp)
247247

248248
```csharp
249249
Uri callbackUri = new Uri("https://<myendpoint>/Events"); //the callback endpoint where you want to receive subsequent events
250-
CallLocator roomCallLocator = new GroupCallLocator("<RoomId>");
250+
CallLocator roomCallLocator = new RoomCallLocator("<RoomId>");
251251
ConnctCallResult response = await client.ConnectAsync(roomCallLocator, callbackUri);
252252
```
253253

0 commit comments

Comments
 (0)