LobbyManager.BeginDenyLobbyParticipants 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
BeginDenyLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object) |
Denies lobby participants admission into conference and removes them from the lobby. |
BeginDenyLobbyParticipants(IEnumerable<ConversationParticipant>, LobbyDenyOptions, AsyncCallback, Object) |
Denies lobby participants admission into conference and removes them from the lobby. |
BeginDenyLobbyParticipants(IEnumerable<ConversationParticipant>, AsyncCallback, Object)
Denies lobby participants admission into conference and removes them from the lobby.
public:
IAsyncResult ^ BeginDenyLobbyParticipants(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Collaboration::ConversationParticipant ^> ^ lobbyParticipants, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDenyLobbyParticipants (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Collaboration.ConversationParticipant> lobbyParticipants, AsyncCallback userCallback, object state);
member this.BeginDenyLobbyParticipants : seq<Microsoft.Rtc.Collaboration.ConversationParticipant> * AsyncCallback * obj -> IAsyncResult
Public Function BeginDenyLobbyParticipants (lobbyParticipants As IEnumerable(Of ConversationParticipant), userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- lobbyParticipants
- IEnumerable<ConversationParticipant>
A list of lobby participants to remove from the lobby.
- 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 the lobbyParticipants
is set to null.
Thrown when the lobbyParticipants
is an empty list.
Remarks
Only conference leaders can perform this operation.
Applies to
BeginDenyLobbyParticipants(IEnumerable<ConversationParticipant>, LobbyDenyOptions, AsyncCallback, Object)
Denies lobby participants admission into conference and removes them from the lobby.
public:
IAsyncResult ^ BeginDenyLobbyParticipants(System::Collections::Generic::IEnumerable<Microsoft::Rtc::Collaboration::ConversationParticipant ^> ^ lobbyParticipants, Microsoft::Rtc::Collaboration::LobbyDenyOptions ^ options, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginDenyLobbyParticipants (System.Collections.Generic.IEnumerable<Microsoft.Rtc.Collaboration.ConversationParticipant> lobbyParticipants, Microsoft.Rtc.Collaboration.LobbyDenyOptions options, AsyncCallback userCallback, object state);
member this.BeginDenyLobbyParticipants : seq<Microsoft.Rtc.Collaboration.ConversationParticipant> * Microsoft.Rtc.Collaboration.LobbyDenyOptions * AsyncCallback * obj -> IAsyncResult
Public Function BeginDenyLobbyParticipants (lobbyParticipants As IEnumerable(Of ConversationParticipant), options As LobbyDenyOptions, userCallback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- lobbyParticipants
- IEnumerable<ConversationParticipant>
A list of lobby participants to remove from the lobby.
- options
- LobbyDenyOptions
Options to denying participants admission into the conference. 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 the lobbyParticipants
is set to null.
Thrown when the lobbyParticipants
is an empty list.
Remarks
Only conference leaders can perform this operation.