LobbyManager.BeginAdmitLobbyParticipants Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BeginAdmitLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object) |
Admits lobby participants into the conference. |
BeginAdmitLobbyParticipants(IEnumerable<ConversationParticipant>, LobbyAdmitOptions, AsyncCallback, Object) |
Admits lobby participants into the conference. |
BeginAdmitLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object)
Admits lobby participants into the conference.
public:
IAsyncResult ^ BeginAdmitLobbyParticipants(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Collaboration::ConversationParticipant ^> ^ lobbyParticipants, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginAdmitLobbyParticipants (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Collaboration.ConversationParticipant> lobbyParticipants, AsyncCallback userCallback, object state);
member this.BeginAdmitLobbyParticipants : seq<Microsoft.Rtc.Collaboration.ConversationParticipant> * AsyncCallback * obj -> IAsyncResult
Public Function BeginAdmitLobbyParticipants (lobbyParticipants As IEnumerable(Of ConversationParticipant), userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- lobbyParticipants
- IEnumerable<ConversationParticipant>
A list of the lobby participants to admit into the conference.
- userCallback
- AsyncCallback
The method to be called when the asynchronous operation is completed.
- state
- Object
A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.
Returns
An IAsyncResult that references the asynchronous operation.
Exceptions
Thrown when the operation is not valid at the given conference session state.
Thrown when lobbyParticipants
is set to null.
Thrown when lobbyParticipants
is an empty collection or contains a null member.
Remarks
Only conference leaders are allowed to perform this operation.
Applies to
BeginAdmitLobbyParticipants(IEnumerable<ConversationParticipant>, LobbyAdmitOptions, AsyncCallback, Object)
Admits lobby participants into the conference.
public:
IAsyncResult ^ BeginAdmitLobbyParticipants(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Collaboration::ConversationParticipant ^> ^ lobbyParticipants, Microsoft::Rtc::Collaboration::LobbyAdmitOptions ^ options, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginAdmitLobbyParticipants (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Collaboration.ConversationParticipant> lobbyParticipants, Microsoft.Rtc.Collaboration.LobbyAdmitOptions options, AsyncCallback userCallback, object state);
member this.BeginAdmitLobbyParticipants : seq<Microsoft.Rtc.Collaboration.ConversationParticipant> * Microsoft.Rtc.Collaboration.LobbyAdmitOptions * AsyncCallback * obj -> IAsyncResult
Public Function BeginAdmitLobbyParticipants (lobbyParticipants As IEnumerable(Of ConversationParticipant), options As LobbyAdmitOptions, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- lobbyParticipants
- IEnumerable<ConversationParticipant>
A list of the lobby participants to admit into the conference.
- options
- LobbyAdmitOptions
Options to customize admitting lobby participants. Could be set to null.
- userCallback
- AsyncCallback
The method to be called when the asynchronous operation is completed.
- state
- Object
A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.
Returns
An IAsyncResult that references the asynchronous operation.
Exceptions
Thrown when the operation is not valid at the given conference session state.
Thrown when lobbyParticipants
is set to null.
Thrown when lobbyParticipants
is an empty collection or contains a null member.
Remarks
Only conference leaders are allowed to perform this operation.