ConnectionService.AddConference(Conference) 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.
Adds a new conference call.
[Android.Runtime.Register("addConference", "(Landroid/telecom/Conference;)V", "", ApiSince=23)]
public void AddConference (Android.Telecom.Conference? conference);
[<Android.Runtime.Register("addConference", "(Landroid/telecom/Conference;)V", "", ApiSince=23)>]
member this.AddConference : Android.Telecom.Conference -> unit
Parameters
- conference
- Conference
The new conference object.
- Attributes
Remarks
Adds a new conference call. When a conference call is created either as a result of an explicit request via #onConference
or otherwise, the connection service should supply an instance of Conference
by invoking this method. A conference call provided by this method will persist until Conference#destroy
is invoked on the conference instance.
Java documentation for android.telecom.ConnectionService.addConference(android.telecom.Conference)
.
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.