Freigeben über


AIProjectMemoryStoresOperations.GetMemoryStoreAsync Method

Definition

Overloads

Name Description
GetMemoryStoreAsync(String, CancellationToken)

Retrieve a memory store.

GetMemoryStoreAsync(String, RequestOptions)

[Protocol Method] Retrieve a memory store.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.

GetMemoryStoreAsync(String, CancellationToken)

Source:
AIProjectMemoryStoresOperations.cs

Retrieve a memory store.

public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryStore>> GetMemoryStoreAsync(string name, System.Threading.CancellationToken cancellationToken = default);
abstract member GetMemoryStoreAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryStore>>
override this.GetMemoryStoreAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryStore>>
Public Overridable Function GetMemoryStoreAsync (name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ClientResult(Of MemoryStore))

Parameters

name
String

The name of the memory store to retrieve.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

name is null.

name is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Applies to

GetMemoryStoreAsync(String, RequestOptions)

Source:
AIProjectMemoryStoresOperations.cs

[Protocol Method] Retrieve a memory store.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult> GetMemoryStoreAsync(string name, System.ClientModel.Primitives.RequestOptions options);
abstract member GetMemoryStoreAsync : string * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
override this.GetMemoryStoreAsync : string * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
Public Overridable Function GetMemoryStoreAsync (name As String, options As RequestOptions) As Task(Of ClientResult)

Parameters

name
String

The name of the memory store to retrieve.

options
RequestOptions

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

name is null.

name is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Applies to