Skip to content

Commit 5986616

Browse files
Fix note issue
1 parent 59ebac3 commit 5986616

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-android.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,8 @@ When you use event listeners that are defined within the same class, bind the li
623623

624624
If you try to pass the listener in directly as an argument, you lose the reference to that listener. Java creates new instances of these listeners, not referencing previously created ones. You can't remove prior instances, because you don’t have a reference to them.
625625

626-
> Note: When a user joins a call, they can access the current remote participants through the `getRemoteParticipants()` method. The `addOnRemoteParticipantsUpdatedListener` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
626+
> [!NOTE]
627+
> When a user joins a call, they can access the current remote participants through the `getRemoteParticipants()` method. The `addOnRemoteParticipantsUpdatedListener` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
627628
628629
### Remote video stream updates
629630

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-ios.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,8 @@ public class CallObserver: NSObject, CallDelegate, IncomingCallDelegate {
632632

633633
All remote participants are represented with the `RemoteParticipant` type and are available through the `remoteParticipants` collection on a call instance.
634634

635-
> Note: When a user joins a call, they can access the current remote participants through the `RemoteParticipants` collection. The `didUpdateRemoteParticipant` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
635+
> [!NOTE]
636+
> When a user joins a call, they can access the current remote participants through the `RemoteParticipants` collection. The `didUpdateRemoteParticipant` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
636637
637638
We can implement a `RemoteParticipantObserver` class to subscribe to the updates on remote video streams of remote participants.
638639

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-windows.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,9 @@ call = await incomingCall.AcceptAsync(acceptCallOptions);
899899
### Remote participant and remote video streams
900900

901901
All remote participants are available through the `RemoteParticipants` collection on a call instance. Once the call is connected, we can access the remote participants of the call and handle the remote video streams.
902-
> Note: When a user joins a call, they can access the current remote participants through the `RemoteParticipants` collection. The `OnRemoteParticipantsUpdated` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
902+
903+
> [!NOTE]
904+
> When a user joins a call, they can access the current remote participants through the `RemoteParticipants` collection. The `OnRemoteParticipantsUpdated` event will not trigger for these existing participants. This event will only trigger when a remote participant joins or leaves the call while the user is already in the call.
903905
904906
```C#
905907
private async void Call_OnVideoStreamsUpdatedAsync(object sender, RemoteVideoStreamsEventArgs args)

0 commit comments

Comments
 (0)