Share via


DeleteMemoryStoreResponse Constructors

Definition

Overloads

DeleteMemoryStoreResponse()

Source:
DeleteMemoryStoreResponse.cs

Initializes a new instance of DeleteMemoryStoreResponse for deserialization.

public DeleteMemoryStoreResponse();
Public Sub New ()

Applies to

DeleteMemoryStoreResponse(String, Boolean)

Source:
DeleteMemoryStoreResponse.cs

Initializes a new instance of DeleteMemoryStoreResponse.

public DeleteMemoryStoreResponse(string name, bool deleted);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponse : string * bool -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponse
Public Sub New (name As String, deleted As Boolean)

Parameters

name
String

The name of the memory store.

deleted
Boolean

Whether the memory store was successfully deleted.

Exceptions

name is null.

Applies to

DeleteMemoryStoreResponse(DeleteMemoryStoreResponseObject, String, Boolean, IDictionary<String,BinaryData>)

Source:
DeleteMemoryStoreResponse.cs

Initializes a new instance of DeleteMemoryStoreResponse.

public DeleteMemoryStoreResponse(Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponseObject object, string name, bool deleted, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponse : Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponseObject * string * bool * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.DeleteMemoryStoreResponse
Public Sub New (object As DeleteMemoryStoreResponseObject, name As String, deleted As Boolean, serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

object
DeleteMemoryStoreResponseObject

The object type. Always 'memory_store.deleted'.

name
String

The name of the memory store.

deleted
Boolean

Whether the memory store was successfully deleted.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to