StacClient.DeleteQueryable Method

Definition

Overloads

Name Description
DeleteQueryable(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.
DeleteQueryable(String, String, CancellationToken)

Delete queryables by name for specified collection.

DeleteQueryable(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 Azure.Response DeleteQueryable(string collectionId, string queryableName, Azure.RequestContext context);
abstract member DeleteQueryable : string * string * Azure.RequestContext -> Azure.Response
override this.DeleteQueryable : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteQueryable (collectionId As String, queryableName As String, context As RequestContext) As 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

DeleteQueryable(String, String, CancellationToken)

Source:
StacClient.cs

Delete queryables by name for specified collection.

public virtual Azure.Response DeleteQueryable(string collectionId, string queryableName, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteQueryable : string * string * System.Threading.CancellationToken -> Azure.Response
override this.DeleteQueryable : string * string * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteQueryable (collectionId As String, queryableName As String, Optional cancellationToken As CancellationToken = Nothing) As 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