Forward the call to the specified target URI with a response code of 303.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
Forward ( _
	
targetUri 
As 
String _
)
C#
public 
void 
Forward(
	
string 
targetUri
)
Visual C++
public:
void 
Forward(
	
String^ 
targetUri
)
JavaScript
function 
forward(
targetUri);

Parameters

targetUri
Type: String
The forward target URI.

Remarks

Redirects the audiovideo call to a different target. Forwarding is carried out by a proxy when supported.

Exceptions

Exception Condition
ArgumentException Thrown when the targetUriparameter is null, empty or invalid.
InvalidOperationException Thrown when the call is not in a valid state to perform this operation.
Microsoft.Rtc.Signaling . . :: . RealTimeException Thrown when the forward operation failed to complete successfully.

See Also