Call.Transfer 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
| Name | Description |
|---|---|
| Transfer(Call) |
Instructs this Call to be transferred to another ongoing call. |
| Transfer(Uri, Boolean) |
Instructs this Call to be transferred to another number. |
Transfer(Call)
Instructs this Call to be transferred to another ongoing call.
[Android.Runtime.Register("transfer", "(Landroid/telecom/Call;)V", "", ApiSince=37)]
public void Transfer(Android.Telecom.Call toCall);
[<Android.Runtime.Register("transfer", "(Landroid/telecom/Call;)V", "", ApiSince=37)>]
member this.Transfer : Android.Telecom.Call -> unit
Parameters
- toCall
- Call
The other ongoing Call to which this call will be transferred. See 3GPP TS 24.629 for more details. This value cannot be null.
- Attributes
Remarks
Instructs this Call to be transferred to another ongoing call. This will initiate CONSULTATIVE transfer.
Android reference for android.telecom.Call.transfer.
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
Transfer(Uri, Boolean)
Instructs this Call to be transferred to another number.
[Android.Runtime.Register("transfer", "(Landroid/net/Uri;Z)V", "", ApiSince=37)]
public void Transfer(Android.Net.Uri targetNumber, bool isConfirmationRequired);
[<Android.Runtime.Register("transfer", "(Landroid/net/Uri;Z)V", "", ApiSince=37)>]
member this.Transfer : Android.Net.Uri * bool -> unit
Parameters
- targetNumber
- Uri
The address to which the call will be transferred. This value cannot be null.
- isConfirmationRequired
- Boolean
if true it will initiate a confirmed(assured) transfer, if false, it will initiate an unconfirmed(blind) transfer. See 3GPP TS 24.629 for more details.
- Attributes
Remarks
Instructs this Call to be transferred to another number.
Android reference for android.telecom.Call.transfer.
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.