Dela via


IDnsRecordSets<RecordSetT>.List Method

Definition

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

IEnumerable<RecordSetT>

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

IEnumerable<RecordSetT>

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.

Returns

IEnumerable<RecordSetT>

Applies to