Skip to content

Commit ed59fd8

Browse files
committed
Reference publicly-exposed items instead of implementation details
1 parent c514b56 commit ed59fd8

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/corelib/Providers/Rackspace/CloudFilesProvider.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2220,16 +2220,16 @@ public long LargeFileBatchThreshold
22202220

22212221
/// <summary>
22222222
/// This value is used as the key for storing metadata information in the dictionary
2223-
/// returned by <see cref="CloudFilesMetadataProcessor.ProcessMetadata"/>.
2223+
/// returned by <see cref="IObjectStorageMetadataProcessor.ProcessMetadata"/>.
22242224
/// </summary>
2225-
/// <seealso cref="CloudFilesMetadataProcessor"/>
2225+
/// <seealso cref="IObjectStorageMetadataProcessor"/>
22262226
public const string ProcessedHeadersMetadataKey = "metadata";
22272227

22282228
/// <summary>
22292229
/// This value is used as the key for storing non-metadata header information in the
2230-
/// dictionary returned by <see cref="CloudFilesMetadataProcessor.ProcessMetadata"/>.
2230+
/// dictionary returned by <see cref="IObjectStorageMetadataProcessor.ProcessMetadata"/>.
22312231
/// </summary>
2232-
/// <seealso cref="CloudFilesMetadataProcessor"/>
2232+
/// <seealso cref="IObjectStorageMetadataProcessor"/>
22332233
public const string ProcessedHeadersHeaderKey = "headers";
22342234

22352235
#endregion

src/corelib/Providers/Rackspace/ProviderBase`1.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ protected virtual IBackoffPolicy DefaultBackoffPolicy
188188
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
189189
/// the request is attempted a second time.
190190
///
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>
192192
///
193193
/// <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>
194194
/// </remarks>
@@ -247,7 +247,7 @@ protected Response<T> ExecuteRESTRequest<T>(CloudIdentity identity, Uri absolute
247247
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
248248
/// the request is attempted a second time.
249249
///
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>
251251
///
252252
/// <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>
253253
/// </remarks>
@@ -306,7 +306,7 @@ protected Response ExecuteRESTRequest(CloudIdentity identity, Uri absoluteUri, H
306306
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
307307
/// the request is attempted a second time.
308308
///
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>
310310
///
311311
/// <para>This method uses <see cref="IRestService.Execute(Uri, HttpMethod, Func{HttpWebResponse, bool, Response}, string, Dictionary{string, string}, Dictionary{string, string}, RequestSettings)"/> to handle the underlying REST request(s).</para>
312312
/// </remarks>
@@ -369,7 +369,7 @@ protected Response ExecuteRESTRequest(CloudIdentity identity, Uri absoluteUri, H
369369
/// If the request fails due to an authorization failure, i.e. the <see cref="Response.StatusCode"/> is <see cref="HttpStatusCode.Unauthorized"/>,
370370
/// the request is attempted a second time.
371371
///
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>
373373
/// </remarks>
374374
/// <typeparam name="T">The <see cref="Response"/> type used for representing the response to the REST call.</typeparam>
375375
/// <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
462462
///
463463
/// <para>This method uses an HTTP request timeout of 4 hours.</para>
464464
///
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>
466466
/// </remarks>
467467
/// <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>
468468
/// <param name="absoluteUri">The absolute URI for the request.</param>

0 commit comments

Comments
 (0)