Lobby interface
Salle d’attente de réunion Teams
Propriétés
participants | Collection de participants distants qui ont l’état « InLobby » dans la réunion Teams. |
Méthodes
admit(Communication |
/**
|
admit |
Admettons tous les participants de la salle d’attente. |
off("lobby |
Fonction de désabonnement pour l’événement lobbyParticipantsUpdated. |
on("lobby |
Fonction d’abonnement pour l’événement lobbyParticipantsUpdated. |
reject(Communication |
Rejeter un participant de la salle d’attente. |
Détails de la propriété
participants
Collection de participants distants qui ont l’état « InLobby » dans la réunion Teams.
participants: readonly RemoteParticipant[]
Valeur de propriété
readonly RemoteParticipant[]
Détails de la méthode
admit(CommunicationIdentifier, AdmitLobbyParticipantOptions)
/**
- Admettre un participant à partir de la salle d’attente.
function admit(participant: CommunicationIdentifier, options?: AdmitLobbyParticipantOptions): Promise<void>
Paramètres
- participant
- CommunicationIdentifier
le participant à être admis.
- options
- AdmitLobbyParticipantOptions
Retours
Promise<void>
admitAll(AdmitLobbyParticipantOptions)
Admettons tous les participants de la salle d’attente.
function admitAll(options?: AdmitLobbyParticipantOptions): Promise<AdmitAllOperationResult>
Paramètres
- options
- AdmitLobbyParticipantOptions
Retours
Promise<AdmitAllOperationResult>
off("lobbyParticipantsUpdated", CollectionUpdatedEvent<RemoteParticipant>)
Fonction de désabonnement pour l’événement lobbyParticipantsUpdated.
function off(event: "lobbyParticipantsUpdated", listener: CollectionUpdatedEvent<RemoteParticipant>)
Paramètres
- event
-
"lobbyParticipantsUpdated"
nom de l’événement.
- listener
rappel fn utilisé pour s’abonner à cet événement.
on("lobbyParticipantsUpdated", CollectionUpdatedEvent<RemoteParticipant>)
Fonction d’abonnement pour l’événement lobbyParticipantsUpdated.
function on(event: "lobbyParticipantsUpdated", listener: CollectionUpdatedEvent<RemoteParticipant>)
Paramètres
- event
-
"lobbyParticipantsUpdated"
nom de l’événement.
- listener
rappel fn qui sera appelé lorsque cette collection va changer, elle transmet des tableaux d’éléments ajoutés et supprimés.
reject(CommunicationIdentifier, RejectLobbyParticipantOptions)
Rejeter un participant de la salle d’attente.
function reject(participant: CommunicationIdentifier, options?: RejectLobbyParticipantOptions): Promise<void>
Paramètres
- participant
- CommunicationIdentifier
le participant à être admis.
- options
- RejectLobbyParticipantOptions
Retours
Promise<void>