Handles the forward response.

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

Syntax

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

CallForwardReceivedEventArgs _
)
C#
protected 
override 
void 
HandleForwardReceived(
	

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

CallForwardReceivedEventArgs^ 
e
) 
override
JavaScript
function 
handleForwardReceived(
e);

Parameters

e
Type: Microsoft.Rtc.Collaboration . . :: . CallForwardReceivedEventArgs
The event argment 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. The derived class can either ignore this operation if the call should not be forwarded or expose a strongly typed event so that the application can access a new call by accepting it.

See Also