DataClient.GetTileMatricesAsync Method

Definition

Overloads

Name Description
GetTileMatricesAsync(RequestContext)

[Protocol Method] Return Matrix List

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

Return Matrix List.

GetTileMatricesAsync(RequestContext)

Source:
DataClient.cs

[Protocol Method] Return Matrix List

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> GetTileMatricesAsync(Azure.RequestContext context);
abstract member GetTileMatricesAsync : Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetTileMatricesAsync : Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetTileMatricesAsync (context As RequestContext) As Task(Of Response)

Parameters

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

GetTileMatricesAsync(CancellationToken)

Source:
DataClient.cs

Return Matrix List.

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>> GetTileMatricesAsync(System.Threading.CancellationToken cancellationToken = default);
abstract member GetTileMatricesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>>
override this.GetTileMatricesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<string>>>
Public Overridable Function GetTileMatricesAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of String)))

Parameters

cancellationToken
CancellationToken

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

Returns

Exceptions

Service returned a non-success status code.

Applies to