PrivateDnsMXRecordCollection.GetAllAsync Method
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.
Lists the record sets of a specified type in a Private DNS zone.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/{recordType}
- Operation Id: RecordSets_ListByType
public virtual Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsMXRecordResource> GetAllAsync (int? top = default, string recordsetnamesuffix = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsMXRecordResource>
override this.GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.PrivateDns.PrivateDnsMXRecordResource>
Public Overridable Function GetAllAsync (Optional top As Nullable(Of Integer) = Nothing, Optional recordsetnamesuffix As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of PrivateDnsMXRecordResource)
Parameters
The maximum number of record sets to return. If not specified, returns up to 100 record sets.
- recordsetnamesuffix
- String
The suffix label of the record set name to be used to filter the record set enumeration. If this parameter is specified, the returned enumeration will only contain records that end with ".<recordsetnamesuffix>".
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of PrivateDnsMXRecordResource that may take multiple service requests to iterate over.
Applies to
Azure SDK for .NET