StacClient.DeleteQueryableAsync Method

Definition

Overloads

Name Description
DeleteQueryableAsync(String, String, CancellationToken)

Delete queryables by name for specified collection.

DeleteQueryableAsync(String, String, RequestContext)

[Protocol Method] Delete queryables by name for specified collection.

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

DeleteQueryableAsync(String, String, CancellationToken)

Source:
StacClient.cs

Delete queryables by name for specified collection.

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

Parameters

collectionId
String

Unique identifier for the STAC collection.

queryableName
String

Name of the queryable property to operate on.

cancellationToken
CancellationToken

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

Returns

Exceptions

collectionId or queryableName is null.

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

Service returned a non-success status code.

Applies to

DeleteQueryableAsync(String, String, RequestContext)

Source:
StacClient.cs

[Protocol Method] Delete queryables by name for specified 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> DeleteQueryableAsync(string collectionId, string queryableName, Azure.RequestContext context);
abstract member DeleteQueryableAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteQueryableAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeleteQueryableAsync (collectionId As String, queryableName As String, context As RequestContext) As Task(Of Response)

Parameters

collectionId
String

Unique identifier for the STAC collection.

queryableName
String

Name of the queryable property to operate on.

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 queryableName is null.

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

Service returned a non-success status code.

Applies to