AssistantsModelFactory.PageableList<T> 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.
Creates a new instance of PageableListT
.
public static Azure.AI.OpenAI.Assistants.PageableList<T> PageableList<T> (System.Collections.Generic.IReadOnlyList<T> data, string firstId, string lastId, bool hasMore);
static member PageableList : System.Collections.Generic.IReadOnlyList<'T> * string * string * bool -> Azure.AI.OpenAI.Assistants.PageableList<'T>
Public Shared Function PageableList(Of T) (data As IReadOnlyList(Of T), firstId As String, lastId As String, hasMore As Boolean) As PageableList(Of T)
Type Parameters
- T
The data type of the listed items.
Parameters
- data
- IReadOnlyList<T>
The items for the list.
- firstId
- String
The ID of the first item in the list.
- lastId
- String
The ID of the last item in the list.
- hasMore
- Boolean
Whether more items not included in the list exist.
Returns
A new instance of PageableListT
.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET