DiscoveryConversationsClient.GetAll Method

Definition

Overloads

Name Description
GetAll(String, String, Nullable<DateTimeOffset>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, RequestContext)

[Protocol Method] List Conversation resources

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
GetAll(String, String, Nullable<DateTimeOffset>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, CancellationToken)

List Conversation resources.

GetAll(String, String, Nullable<DateTimeOffset>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, RequestContext)

Source:
DiscoveryConversationsClient.cs

[Protocol Method] List Conversation resources

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response GetAll(string investigationName, string projectName, DateTimeOffset? createdSince, int? top, int? skip, int? maxpagesize, Azure.RequestContext context);
abstract member GetAll : string * string * Nullable<DateTimeOffset> * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.Response
override this.GetAll : string * string * Nullable<DateTimeOffset> * Nullable<int> * Nullable<int> * Nullable<int> * Azure.RequestContext -> Azure.Response
Public Overridable Function GetAll (investigationName As String, projectName As String, createdSince As Nullable(Of DateTimeOffset), top As Nullable(Of Integer), skip As Nullable(Of Integer), maxpagesize As Nullable(Of Integer), context As RequestContext) As Response

Parameters

investigationName
String

The name of the associated Investigation.

projectName
String

The name of the associated Project.

createdSince
Nullable<DateTimeOffset>

The oldest creation timestamp to keep.

top
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

context
RequestContext

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

Service returned a non-success status code.

Applies to

GetAll(String, String, Nullable<DateTimeOffset>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, CancellationToken)

Source:
DiscoveryConversationsClient.cs

List Conversation resources.

public virtual Azure.Response<Azure.AI.Discovery.PagedConversation> GetAll(string investigationName = default, string projectName = default, DateTimeOffset? createdSince = default, int? top = default, int? skip = default, int? maxpagesize = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * Nullable<DateTimeOffset> * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.Response<Azure.AI.Discovery.PagedConversation>
override this.GetAll : string * string * Nullable<DateTimeOffset> * Nullable<int> * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> Azure.Response<Azure.AI.Discovery.PagedConversation>
Public Overridable Function GetAll (Optional investigationName As String = Nothing, Optional projectName As String = Nothing, Optional createdSince As Nullable(Of DateTimeOffset) = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional maxpagesize As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of PagedConversation)

Parameters

investigationName
String

The name of the associated Investigation.

projectName
String

The name of the associated Project.

createdSince
Nullable<DateTimeOffset>

The oldest creation timestamp to keep.

top
Nullable<Int32>

The number of result items to return.

skip
Nullable<Int32>

The number of result items to skip.

maxpagesize
Nullable<Int32>

The maximum number of result items per page.

cancellationToken
CancellationToken

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

Returns

Exceptions

Service returned a non-success status code.

Applies to