You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -376,3 +376,20 @@ Check is screen sharing is on. It returns `Boolean`.
376
376
```js
377
377
const isScreenSharingOn = call.isScreenSharingOn;
378
378
```
379
+
380
+
## Hang up
381
+
382
+
There are two ways how you can hang up the call. You can leave the call and keep other participants in the call or terminate the call for all participants. If you want to leave the call, then just use
383
+
384
+
```js
385
+
call.hangUp();
386
+
```
387
+
388
+
You can also end the call for all participants if you provide `HangUpOptions`.
0 commit comments