Language

Connection.OnTransfer Method

Definition

Overloads

Name Description
OnTransfer(Connection)

Notifies this Connection of a request to start a CONSULTATIVE transfer to another Connection.

OnTransfer(Uri, Boolean)

Notifies this Connection of a request to transfer to a target number.

OnTransfer(Connection)

Notifies this Connection of a request to start a CONSULTATIVE transfer to another Connection.

[Android.Runtime.Register("onTransfer", "(Landroid/telecom/Connection;)V", "GetOnTransfer_Landroid_telecom_Connection_Handler", ApiSince=37)]
public virtual void OnTransfer(Android.Telecom.Connection toConnection);
[<Android.Runtime.Register("onTransfer", "(Landroid/telecom/Connection;)V", "GetOnTransfer_Landroid_telecom_Connection_Handler", ApiSince=37)>]
abstract member OnTransfer : Android.Telecom.Connection -> unit
override this.OnTransfer : Android.Telecom.Connection -> unit

Parameters

toConnection
Connection

the Connection to transfer this call to.

Attributes

Remarks

Notifies this Connection of a request to start a CONSULTATIVE transfer to another Connection. See 3GPP TS 24.629 for more details.

Android reference for android.telecom.Connection.onTransfer.

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.

Applies to

OnTransfer(Uri, Boolean)

Notifies this Connection of a request to transfer to a target number.

[Android.Runtime.Register("onTransfer", "(Landroid/net/Uri;Z)V", "GetOnTransfer_Landroid_net_Uri_ZHandler", ApiSince=37)]
public virtual void OnTransfer(Android.Net.Uri address, bool isConfirmationRequired);
[<Android.Runtime.Register("onTransfer", "(Landroid/net/Uri;Z)V", "GetOnTransfer_Landroid_net_Uri_ZHandler", ApiSince=37)>]
abstract member OnTransfer : Android.Net.Uri * bool -> unit
override this.OnTransfer : Android.Net.Uri * bool -> unit

Parameters

address
Uri

the address to transfer this Connection to.

isConfirmationRequired
Boolean

when true, the ConnectionService should wait until the transfer has successfully completed before disconnecting the current Connection, also known as an assured transfer. When false, the ConnectionService should signal the network to perform the transfer, but should immediately disconnect the call regardless of the outcome of the transfer, also known as a blind transfer.

Attributes

Remarks

Notifies this Connection of a request to transfer to a target number.

Android reference for android.telecom.Connection.onTransfer.

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.

Applies to