You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
189
189
/// the request is attempted a second time.
190
190
///
191
-
/// <para>This method calls <see cref="CheckResponse"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
191
+
/// <para>This method calls <see cref="IHttpResponseCodeValidator.Validate"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
192
192
///
193
193
/// <para>This method uses <see cref="IRestService.Execute{T}(Uri, HttpMethod, string, Dictionary{string, string}, Dictionary{string, string}, RequestSettings)"/> to handle the underlying REST request(s).</para>
194
194
/// </remarks>
@@ -247,7 +247,7 @@ protected Response<T> ExecuteRESTRequest<T>(CloudIdentity identity, Uri absolute
247
247
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
248
248
/// the request is attempted a second time.
249
249
///
250
-
/// <para>This method calls <see cref="CheckResponse"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
250
+
/// <para>This method calls <see cref="IHttpResponseCodeValidator.Validate"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
251
251
///
252
252
/// <para>This method uses <see cref="IRestService.Execute(Uri, HttpMethod, string, Dictionary{string, string}, Dictionary{string, string}, RequestSettings)"/> to handle the underlying REST request(s).</para>
253
253
/// </remarks>
@@ -306,7 +306,7 @@ protected Response ExecuteRESTRequest(CloudIdentity identity, Uri absoluteUri, H
306
306
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
307
307
/// the request is attempted a second time.
308
308
///
309
-
/// <para>This method calls <see cref="CheckResponse"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
309
+
/// <para>This method calls <see cref="IHttpResponseCodeValidator.Validate"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
@@ -369,7 +369,7 @@ protected Response ExecuteRESTRequest(CloudIdentity identity, Uri absoluteUri, H
369
369
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
370
370
/// the request is attempted a second time.
371
371
///
372
-
/// <para>This method calls <see cref="CheckResponse"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
372
+
/// <para>This method calls <see cref="IHttpResponseCodeValidator.Validate"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
373
373
/// </remarks>
374
374
/// <typeparam name="T">The <see cref="Response"/> type used for representing the response to the REST call.</typeparam>
375
375
/// <param name="identity">The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.</param>
@@ -462,7 +462,7 @@ private T ExecuteRESTRequest<T>(CloudIdentity identity, Uri absoluteUri, HttpMet
462
462
///
463
463
/// <para>This method uses an HTTP request timeout of 4 hours.</para>
464
464
///
465
-
/// <para>This method calls <see cref="CheckResponse"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
465
+
/// <para>This method calls <see cref="IHttpResponseCodeValidator.Validate"/>, which results in a <see cref="ResponseException"/> if the request fails.</para>
466
466
/// </remarks>
467
467
/// <param name="identity">The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.</param>
468
468
/// <param name="absoluteUri">The absolute URI for the request.</param>
0 commit comments