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

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

Syntax

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

Parameters

targetUri
Type: String
The forward target URI.

Remarks

Redirects the 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 valid state to perform this operation.
Microsoft.Rtc.Signaling . . :: . RealTimeException Thrown when the forward operation failed to complete successfully.

See Also