Share via


MemoryStoreDeleteScopeResponse Constructors

Definition

Overloads

MemoryStoreDeleteScopeResponse()

Source:
MemoryStoreDeleteScopeResponse.cs

Initializes a new instance of MemoryStoreDeleteScopeResponse for deserialization.

public MemoryStoreDeleteScopeResponse();
Public Sub New ()

Applies to

MemoryStoreDeleteScopeResponse(String, String, Boolean)

Source:
MemoryStoreDeleteScopeResponse.cs

Initializes a new instance of MemoryStoreDeleteScopeResponse.

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

Parameters

name
String

The name of the memory store.

scope
String

The scope from which memories were deleted.

deleted
Boolean

Whether the deletion operation was successful.

Exceptions

name or scope is null.

Applies to

MemoryStoreDeleteScopeResponse(MemoryStoreDeleteScopeResponseObject, String, String, Boolean, IDictionary<String,BinaryData>)

Source:
MemoryStoreDeleteScopeResponse.cs

Initializes a new instance of MemoryStoreDeleteScopeResponse.

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

Parameters

object
MemoryStoreDeleteScopeResponseObject

The object type. Always 'memory_store.scope.deleted'.

name
String

The name of the memory store.

scope
String

The scope from which memories were deleted.

deleted
Boolean

Whether the deletion operation was successful.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to