DataClient.GetCollectionAssetsForBboxAsync Method

Definition

Overloads

Name Description
GetCollectionAssetsForBboxAsync(GetCollectionAssetsForBboxOptions, RequestContext)

[Protocol Method] Return a list of assets which overlap a given bounding box for a STAC collection.

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

Return a list of assets which overlap a given bounding box for a STAC collection.

GetCollectionAssetsForBboxAsync(GetCollectionAssetsForBboxOptions, RequestContext)

Source:
DataClient.cs

[Protocol Method] Return a list of assets which overlap a given bounding box for a STAC collection.

  • 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> GetCollectionAssetsForBboxAsync(Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions options, Azure.RequestContext context);
abstract member GetCollectionAssetsForBboxAsync : Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetCollectionAssetsForBboxAsync : Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetCollectionAssetsForBboxAsync (options As GetCollectionAssetsForBboxOptions, context As RequestContext) As Task(Of Response)

Parameters

options
GetCollectionAssetsForBboxOptions

The options for the getCollectionAssetsForBbox request.

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

options is null.

Service returned a non-success status code.

Applies to

GetCollectionAssetsForBboxAsync(GetCollectionAssetsForBboxOptions, CancellationToken)

Source:
DataClient.cs

Return a list of assets which overlap a given bounding box for a STAC collection.

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<BinaryData>>> GetCollectionAssetsForBboxAsync(Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetCollectionAssetsForBboxAsync : Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<BinaryData>>>
override this.GetCollectionAssetsForBboxAsync : Azure.Analytics.PlanetaryComputer.GetCollectionAssetsForBboxOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<BinaryData>>>
Public Overridable Function GetCollectionAssetsForBboxAsync (options As GetCollectionAssetsForBboxOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of BinaryData)))

Parameters

options
GetCollectionAssetsForBboxOptions

The options for the getCollectionAssetsForBbox request.

cancellationToken
CancellationToken

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

Returns

Exceptions

options is null.

Service returned a non-success status code.

Applies to