你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PrivateDnsZoneResource.GetRecordsAsync 方法

定义

列出专用 DNS区域中的所有记录集。

  • 请求路径/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/ALL
  • 操作IdRecordSets_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData> GetRecordsAsync (int? top = default, string recordsetnamesuffix = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRecordsAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData>
override this.GetRecordsAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsRecordData>
Public Overridable Function GetRecordsAsync (Optional top As Nullable(Of Integer) = Nothing, Optional recordsetnamesuffix As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of PrivateDnsRecordData)

参数

top
Nullable<Int32>

要返回的最大记录集数。 如果未指定,则最多返回 100 个记录集。

recordsetnamesuffix
String

用于筛选记录集枚举的记录集名称的后缀标签。 如果指定此参数,则返回的枚举将仅包含以 “结尾的记录。<recordsetnamesuffix>”。

cancellationToken
CancellationToken

要使用的取消标记。

返回

的异步集合 PrivateDnsBaseRecordData ,可能需要循环访问多个服务请求。

适用于