IDnsZone.ListRecordSets 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.
Overloads
ListRecordSets(String) |
Lists all the record sets in this zone with the given suffix. |
ListRecordSets(String, Int32) |
Lists all the record sets in this zone with the given suffix, also limits the number of entries per page to the given page size. |
ListRecordSets() | |
ListRecordSets(Int32) |
Lists all the record sets in this zone with each entries in each page limited to the given size. |
ListRecordSets(String)
Lists all the record sets in this zone with the given suffix.
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet> ListRecordSets (string recordSetNameSuffix);
abstract member ListRecordSets : string -> seq<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet>
Public Function ListRecordSets (recordSetNameSuffix As String) As IEnumerable(Of IDnsRecordSet)
Parameters
- recordSetNameSuffix
- String
The record set name suffix.
Returns
Applies to
ListRecordSets(String, Int32)
Lists all the record sets in this zone with the given suffix, also limits the number of entries per page to the given page size.
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet> ListRecordSets (string recordSetNameSuffix, int pageSize);
abstract member ListRecordSets : string * int -> seq<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet>
Public Function ListRecordSets (recordSetNameSuffix As String, pageSize As Integer) As IEnumerable(Of IDnsRecordSet)
Parameters
- recordSetNameSuffix
- String
The record set name suffix.
- pageSize
- Int32
The maximum number of record sets in a page.
Returns
Applies to
ListRecordSets()
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet> ListRecordSets ();
abstract member ListRecordSets : unit -> seq<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet>
Public Function ListRecordSets () As IEnumerable(Of IDnsRecordSet)
Returns
Applies to
ListRecordSets(Int32)
Lists all the record sets in this zone with each entries in each page limited to the given size.
public System.Collections.Generic.IEnumerable<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet> ListRecordSets (int pageSize);
abstract member ListRecordSets : int -> seq<Microsoft.Azure.Management.Dns.Fluent.IDnsRecordSet>
Public Function ListRecordSets (pageSize As Integer) As IEnumerable(Of IDnsRecordSet)
Parameters
- pageSize
- Int32
The maximum number of record sets in a page.
Returns
Applies to
Azure SDK for .NET