Call.HandleTransferReceived(CallTransferReceivedEventArgs) Method

Definition

Handles a transfer received event in a class derived from the call class.

protected:
 abstract void HandleTransferReceived(Microsoft::Rtc::Collaboration::CallTransferReceivedEventArgs ^ e);
protected abstract void HandleTransferReceived (Microsoft.Rtc.Collaboration.CallTransferReceivedEventArgs e);
abstract member HandleTransferReceived : Microsoft.Rtc.Collaboration.CallTransferReceivedEventArgs -> unit
Protected MustOverride Sub HandleTransferReceived (e As CallTransferReceivedEventArgs)

Parameters

e
CallTransferReceivedEventArgs

The strongly typed event argument created for handling the "Transfer" operation. The derived class is expected to downcast the right generic type and expose the event.

Remarks

A method must be implemented by the derived class to handle the transfer received event. The subclass is responsible for either rejecting it without exposing to the application or raising a strongly typed event.

Applies to