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
Copy file name to clipboardExpand all lines: src/corelib/Providers/Rackspace/IDnsService.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -471,7 +471,7 @@ public interface IDnsService
471
471
/// Removes one or more domain records from the DNS service.
472
472
/// </summary>
473
473
/// <param name="domainId">The domain ID. This is obtained from <see cref="DnsDomain.Id">DnsDomain.Id</see>.</param>
474
-
/// <param name="recordId">A collection of IDs for the records to remove. These are obtained from <see cref="DnsRecord.Id">DnsRecord.Id</see>.</param>
474
+
/// <param name="recordIds">A collection of IDs for the records to remove. These are obtained from <see cref="DnsRecord.Id">DnsRecord.Id</see>.</param>
475
475
/// <param name="completionOption">Specifies when the <see cref="Task"/> representing the asynchronous server operation should be considered complete.</param>
476
476
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that the task will observe.</param>
477
477
/// <param name="progress">An optional callback object to receive progress notifications, if <paramref name="completionOption"/> is <see cref="AsyncCompletionOption.RequestCompleted"/>. If this is <see langword="null"/>, no progress notifications are sent.</param>
@@ -491,16 +491,16 @@ public interface IDnsService
491
491
/// <exception cref="ArgumentNullException">
492
492
/// If <paramref name="domainId"/> is <see langword="null"/>.
493
493
/// <para>-or-</para>
494
-
/// <para>If <paramref name="recordId"/> is <see langword="null"/>.</para>
494
+
/// <para>If <paramref name="recordIds"/> is <see langword="null"/>.</para>
495
495
/// </exception>
496
496
/// <exception cref="ArgumentException">
497
-
/// If <paramref name="recordId"/> contains any <see langword="null"/> values.
497
+
/// If <paramref name="recordIds"/> contains any <see langword="null"/> values.
498
498
/// <para>-or-</para>
499
499
/// <para>If <paramref name="completionOption"/> is not a valid <see cref="AsyncCompletionOption"/>.</para>
500
500
/// </exception>
501
501
/// <exception cref="WebException">If the REST request does not return successfully.</exception>
502
502
/// <seealso href="http://docs.rackspace.com/cdns/api/v1.0/cdns-devguide/content/Remove_Records-d1e5188.html">Remove Records (Rackspace Cloud DNS Developer Guide - API v1.0)</seealso>
0 commit comments