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

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

Syntax

Visual Basic (Declaration)
Protected 
MustOverride 
Sub 
HandleTransferNotificationReceived
( _
	
e 
As 

TransferStateChangedEventArgs _
)
C#
protected 
abstract 
void 
HandleTransferNotificationReceived(
	

TransferStateChangedEventArgs 
e
)
Visual C++
protected:
virtual 
void 
HandleTransferNotificationReceived(
	

TransferStateChangedEventArgs^ 
e
) 
abstract
JavaScript
function 
handleTransferNotificationReceived(
e);

Parameters

e
Type: Microsoft.Rtc.Collaboration . . :: . TransferStateChangedEventArgs
EventArg containing the status of transfer.

Remarks

This method must be implemented by the derived class to handle the notifications received for a transfer operations sent.

See Also