MemoryStorePagedResult Constructors
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
| Name | Description |
|---|---|
| MemoryStorePagedResult() |
Initializes a new instance of MemoryStorePagedResult for deserialization. |
| MemoryStorePagedResult(IEnumerable<MemoryStoreObject>, Boolean) |
Initializes a new instance of MemoryStorePagedResult. |
| MemoryStorePagedResult(IReadOnlyList<MemoryStoreObject>, String, String, Boolean, IDictionary<String,BinaryData>) |
Initializes a new instance of MemoryStorePagedResult. |
MemoryStorePagedResult()
- Source:
- MemoryStorePagedResult.cs
Initializes a new instance of MemoryStorePagedResult for deserialization.
public MemoryStorePagedResult();
Public Sub New ()
Applies to
MemoryStorePagedResult(IEnumerable<MemoryStoreObject>, Boolean)
- Source:
- MemoryStorePagedResult.cs
Initializes a new instance of MemoryStorePagedResult.
public MemoryStorePagedResult(System.Collections.Generic.IEnumerable<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreObject> data, bool hasMore);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStorePagedResult : seq<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreObject> * bool -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStorePagedResult
Public Sub New (data As IEnumerable(Of MemoryStoreObject), hasMore As Boolean)
Parameters
- data
- IEnumerable<MemoryStoreObject>
The requested list of items.
- hasMore
- Boolean
A value indicating whether there are additional values available not captured in this list.
Exceptions
data is null.
Applies to
MemoryStorePagedResult(IReadOnlyList<MemoryStoreObject>, String, String, Boolean, IDictionary<String,BinaryData>)
- Source:
- MemoryStorePagedResult.cs
Initializes a new instance of MemoryStorePagedResult.
public MemoryStorePagedResult(System.Collections.Generic.IReadOnlyList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreObject> data, string firstId, string lastId, bool hasMore, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStorePagedResult : System.Collections.Generic.IReadOnlyList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreObject> * string * string * bool * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStorePagedResult
Public Sub New (data As IReadOnlyList(Of MemoryStoreObject), firstId As String, lastId As String, hasMore As Boolean, serializedAdditionalRawData As IDictionary(Of String, BinaryData))
Parameters
The requested list of items.
- firstId
- String
The first ID represented in this list.
- lastId
- String
The last ID represented in this list.
- hasMore
- Boolean
A value indicating whether there are additional values available not captured in this list.
- serializedAdditionalRawData
- IDictionary<String,BinaryData>
Keeps track of any properties unknown to the library.