StacClient.DeleteMosaicAsync Method

Definition

Overloads

Name Description
DeleteMosaicAsync(String, String, RequestContext)

[Protocol Method] Delete a mosaic definition from a given collection

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

Delete a mosaic definition from a given collection.

DeleteMosaicAsync(String, String, RequestContext)

Source:
StacClient.cs

[Protocol Method] Delete a mosaic definition from a given 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> DeleteMosaicAsync(string collectionId, string mosaicId, Azure.RequestContext context);
abstract member DeleteMosaicAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteMosaicAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeleteMosaicAsync (collectionId As String, mosaicId As String, context As RequestContext) As Task(Of Response)

Parameters

collectionId
String

Unique identifier for the STAC collection.

mosaicId
String

Unique identifier for the mosaic configuration.

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 or mosaicId is null.

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

Service returned a non-success status code.

Applies to

DeleteMosaicAsync(String, String, CancellationToken)

Source:
StacClient.cs

Delete a mosaic definition from a given collection.

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

Parameters

collectionId
String

Unique identifier for the STAC collection.

mosaicId
String

Unique identifier for the mosaic configuration.

cancellationToken
CancellationToken

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

Returns

Exceptions

collectionId or mosaicId is null.

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

Service returned a non-success status code.

Applies to