Share via


CommunicationsOperationsExtensions.ListNextAsync Method

Definition

Lists all communications (attachments not included) for a support ticket. <br/></br> You can also filter support ticket communications by CreatedDate or CommunicationType using the $filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results. <br/><br/>Support ticket data is available for 12 months after ticket creation. If a ticket was created more than 12 months ago, a request for data might cause an error.

public static System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Support.Models.CommunicationDetails>> ListNextAsync (this Microsoft.Azure.Management.Support.ICommunicationsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default);
static member ListNextAsync : Microsoft.Azure.Management.Support.ICommunicationsOperations * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Support.Models.CommunicationDetails>>
<Extension()>
Public Function ListNextAsync (operations As ICommunicationsOperations, nextPageLink As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IPage(Of CommunicationDetails))

Parameters

operations
ICommunicationsOperations

The operations group for this extension method.

nextPageLink
String

The NextLink from the previous successful call to List operation.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to