Gets or sets the flag that indicates if the endpoint should retry requests for failed responses that contain retry-after header. By default, this is false and hence the platform will retry once more for such requests. If the applications wants to disable this automatic retry behavior, this property can be set to true. Typicaly, this might be needed for an application whose primary task is to perform back to back operation for two sessions where automatci retry might interefere with the ability to offer quick feedback via the back to back seesion so that the remote can take corrective measures.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
DisableAutomaticRetryForRetryAfter 
As 
Boolean
C#
public 
bool 
DisableAutomaticRetryForRetryAfter
{ 
get; 
set; }
Visual C++
public:
property 
bool 
DisableAutomaticRetryForRetryAfter
{
	
bool 
get ();
	
void 
set (
bool 
value);
}
JavaScript
function get_

disableAutomaticRetryForRetryAfter();
function set_
disableAutomaticRetryForRetryAfter(
value);

See Also