ConnectionService.OnRemoteConferenceAdded(RemoteConference) 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.
Indicates that a remote conference has been created for existing RemoteConnection
s.
[Android.Runtime.Register("onRemoteConferenceAdded", "(Landroid/telecom/RemoteConference;)V", "GetOnRemoteConferenceAdded_Landroid_telecom_RemoteConference_Handler", ApiSince=23)]
public virtual void OnRemoteConferenceAdded (Android.Telecom.RemoteConference? conference);
[<Android.Runtime.Register("onRemoteConferenceAdded", "(Landroid/telecom/RemoteConference;)V", "GetOnRemoteConferenceAdded_Landroid_telecom_RemoteConference_Handler", ApiSince=23)>]
abstract member OnRemoteConferenceAdded : Android.Telecom.RemoteConference -> unit
override this.OnRemoteConferenceAdded : Android.Telecom.RemoteConference -> unit
Parameters
- conference
- RemoteConference
The remote conference call.
- Attributes
Remarks
Indicates that a remote conference has been created for existing RemoteConnection
s. When this method is invoked, this ConnectionService
should create its own representation of the conference call and send it to telecom using #addConference
.
This is only relevant to ConnectionService
s which are registered with PhoneAccount#CAPABILITY_CONNECTION_MANAGER
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.