Click or drag to resize

CallTransfer Method (Call, CallTransferStatusHandler)

Transfers this call to another call (an attended transfer).

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public void Transfer(
	Call callToReplace,
	CallTransferStatusHandler transferStatusHandler
)

Parameters

callToReplace
Type: Avaya.ClientServicesCall
The existing call to transfer the call to.
transferStatusHandler
Type: Avaya.ClientServicesCallTransferStatusHandler
Completion handler instance that receives the result of the operation. If not provided, failure feedback cannot be received.
Remarks
In SIP, transfer operation is implemented using delegation technique where transferor delegates transferee to reach out to transfer target in order to complete the transfer operation. While the transfer is in progress, the transferor receives feedback from the transferee about the status of the transfer. If a failure is reported by the transferee, on the transferor's is notified of the error via the transferStatusHandler that is provided as input argument.
See Also