HttpResponseHeaderCollection.RetryAfter Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the HttpDateOrDeltaHeaderValue object that represent the value of a Retry-After HTTP header on an HTTP response.
public:
property HttpDateOrDeltaHeaderValue ^ RetryAfter { HttpDateOrDeltaHeaderValue ^ get(); void set(HttpDateOrDeltaHeaderValue ^ value); };
HttpDateOrDeltaHeaderValue RetryAfter();
void RetryAfter(HttpDateOrDeltaHeaderValue value);
public HttpDateOrDeltaHeaderValue RetryAfter { get; set; }
var httpDateOrDeltaHeaderValue = httpResponseHeaderCollection.retryAfter;
httpResponseHeaderCollection.retryAfter = httpDateOrDeltaHeaderValue;
Public Property RetryAfter As HttpDateOrDeltaHeaderValue
Property Value
The object that represents the value of a Retry-After HTTP header on an HTTP response. A null value means that the header is absent.