Handles a forwarding 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 
Overridable 
Sub 
HandleForwardReceived ( _
	
e 
As 

CallForwardReceivedEventArgs _
)
C#
protected 
virtual 
void 
HandleForwardReceived(
	

CallForwardReceivedEventArgs 
e
)
Visual C++
protected:
virtual 
void 
HandleForwardReceived(
	

CallForwardReceivedEventArgs^ 
e
)
JavaScript
function 
handleForwardReceived(
e);

Parameters

e
Type: Microsoft.Rtc.Collaboration . . :: . CallForwardReceivedEventArgs
The event argument created for handling the "Forwarded" operation.

Remarks

A method that must be implemented by the derived class to handle the forward response received for a call.

Remarks

If deriveed class override this method, it can expose the Forwarded event to the application. Derived class implementation must make sure that action is taken on the EventArg, otherwise Establish operation will take long time to timeout.

See Also