Share via


MemorySearchOptions Constructors

Definition

Overloads

MemorySearchOptions()

Source:
MemorySearchOptions.cs

Initializes a new instance of MemorySearchOptions.

public MemorySearchOptions();
Public Sub New ()

Applies to

MemorySearchOptions(Nullable<Int32>, IDictionary<String,BinaryData>)

Source:
MemorySearchOptions.cs

Initializes a new instance of MemorySearchOptions.

public MemorySearchOptions(int? maxMemories, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchOptions : Nullable<int> * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchOptions
Public Sub New (maxMemories As Nullable(Of Integer), serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

maxMemories
Nullable<Int32>

Maximum number of memory items to return.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to