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

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Protected 
Overrides 
Sub 
HandleTransferReceived ( _
	
e 
As 

CallTransferReceivedEventArgs _
)
C#
protected 
override 
void 
HandleTransferReceived(
	

CallTransferReceivedEventArgs 
e
)
Visual C++
protected:
virtual 
void 
HandleTransferReceived(
	

CallTransferReceivedEventArgs^ 
e
) 
override
JavaScript
function 
handleTransferReceived(
e);

Parameters

e
Type: Microsoft.Rtc.Collaboration . . :: . 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.

See Also