Conference.Extras Property
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.
Returns the extras associated with this conference. -or- Replaces all the extras associated with this Conference
.
public Android.OS.Bundle? Extras { [Android.Runtime.Register("getExtras", "()Landroid/os/Bundle;", "", ApiSince=23)] get; [Android.Runtime.Register("setExtras", "(Landroid/os/Bundle;)V", "", ApiSince=23)] set; }
[<get: Android.Runtime.Register("getExtras", "()Landroid/os/Bundle;", "", ApiSince=23)>]
[<set: Android.Runtime.Register("setExtras", "(Landroid/os/Bundle;)V", "", ApiSince=23)>]
member this.Extras : Android.OS.Bundle with get, set
Property Value
The extras associated with this connection.
- Attributes
Remarks
Property getter documentation:
Returns the extras associated with this conference.
Extras should be updated using #putExtras(Bundle)
and #removeExtras(List)
.
Telecom or an InCallService
can also update the extras via android.telecom.Call#putExtras(Bundle)
, and Call#removeExtras(List)
.
The conference is notified of changes to the extras made by Telecom or an InCallService
by #onExtrasChanged(Bundle)
.
Java documentation for android.telecom.Conference.getExtras()
.
Property setter documentation:
Replaces all the extras associated with this Conference
.
New or existing keys are replaced in the Conference
extras. Keys which are no longer in the new extras, but were present the last time setExtras
was called are removed.
Alternatively you may use the #putExtras(Bundle)
, and #removeExtras(String...)
methods to modify the extras.
No assumptions should be made as to how an In-Call UI or service will handle these extras. Keys should be fully qualified (e.g., com.example.extras.MY_EXTRA) to avoid conflicts.
Java documentation for android.telecom.Conference.setExtras(android.os.Bundle)
.
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.