StacClient.GetTileSettings Method

Definition

Overloads

Name Description
GetTileSettings(String, RequestContext)

[Protocol Method] Get the tile settings for a given collection

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

Get the tile settings for a given collection.

GetTileSettings(String, RequestContext)

Source:
StacClient.cs

[Protocol Method] Get the tile settings for a given collection

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response GetTileSettings(string collectionId, Azure.RequestContext context);
abstract member GetTileSettings : string * Azure.RequestContext -> Azure.Response
override this.GetTileSettings : string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetTileSettings (collectionId As String, context As RequestContext) As Response

Parameters

collectionId
String

Unique identifier for the STAC collection.

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

collectionId is null.

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

Service returned a non-success status code.

Applies to

GetTileSettings(String, CancellationToken)

Source:
StacClient.cs

Get the tile settings for a given collection.

public virtual Azure.Response<Azure.Analytics.PlanetaryComputer.TileSettings> GetTileSettings(string collectionId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTileSettings : string * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.TileSettings>
override this.GetTileSettings : string * System.Threading.CancellationToken -> Azure.Response<Azure.Analytics.PlanetaryComputer.TileSettings>
Public Overridable Function GetTileSettings (collectionId As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of TileSettings)

Parameters

collectionId
String

Unique identifier for the STAC collection.

cancellationToken
CancellationToken

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

Returns

Exceptions

collectionId is null.

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

Service returned a non-success status code.

Applies to