IDnsRecordSets<RecordSetT>.List 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
List(Int32) |
Lists all the record sets, with number of entries in each page limited to given size. |
List(String) |
Lists all the record sets with the given suffix. |
List(String, Int32) |
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page size. |
List(Int32)
Lists all the record sets, with number of entries in each page limited to given size.
public System.Collections.Generic.IEnumerable<RecordSetT> List (int pageSize);
abstract member List : int -> seq<'RecordSetT>
Public Function List (pageSize As Integer) As IEnumerable(Of RecordSetT)
Parameters
- pageSize
- Int32
The maximum number of record sets in a page.
Returns
Applies to
List(String)
Lists all the record sets with the given suffix.
public System.Collections.Generic.IEnumerable<RecordSetT> List (string recordSetNameSuffix);
abstract member List : string -> seq<'RecordSetT>
Public Function List (recordSetNameSuffix As String) As IEnumerable(Of RecordSetT)
Parameters
- recordSetNameSuffix
- String
The record set name suffix.
Returns
Applies to
List(String, Int32)
Lists all the record sets with the given suffix, also limits the number of entries per page to the given page size.
public System.Collections.Generic.IEnumerable<RecordSetT> List (string recordSetNameSuffix, int pageSize);
abstract member List : string * int -> seq<'RecordSetT>
Public Function List (recordSetNameSuffix As String, pageSize As Integer) As IEnumerable(Of RecordSetT)
Parameters
- recordSetNameSuffix
- String
The record set name suffix.
- pageSize
- Int32
The maximum number of record sets in a page.