StacClient.DeleteCollectionAsync Method

Definition

Overloads

Name Description
DeleteCollectionAsync(WaitUntil, String, RequestContext)

Delete a collection in the GeoCatalog instance.

DeleteCollectionAsync(WaitUntil, String, CancellationToken)

Delete a collection in the GeoCatalog instance.

DeleteCollectionAsync(WaitUntil, String, RequestContext)

Source:
StacClient.cs

Delete a collection in the GeoCatalog instance.

public virtual System.Threading.Tasks.Task<Azure.Operation> DeleteCollectionAsync(Azure.WaitUntil waitUntil, string collectionId, Azure.RequestContext context);
abstract member DeleteCollectionAsync : Azure.WaitUntil * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Operation>
override this.DeleteCollectionAsync : Azure.WaitUntil * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Operation>
Public Overridable Function DeleteCollectionAsync (waitUntil As WaitUntil, collectionId As String, context As RequestContext) As Task(Of Operation)

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

collectionId
String

Catalog collection id.

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.

Applies to

DeleteCollectionAsync(WaitUntil, String, CancellationToken)

Source:
StacClient.cs

Delete a collection in the GeoCatalog instance.

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

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

collectionId
String

Catalog collection id.

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.

Applies to