StacClient.DeleteRenderOption Method

Definition

Overloads

Name Description
DeleteRenderOption(String, String, RequestContext)

[Protocol Method] Delete a render option for a given collection

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

Delete a render option for a given collection.

DeleteRenderOption(String, String, RequestContext)

Source:
StacClient.cs

[Protocol Method] Delete a render option 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 DeleteRenderOption(string collectionId, string renderOptionId, Azure.RequestContext context);
abstract member DeleteRenderOption : string * string * Azure.RequestContext -> Azure.Response
override this.DeleteRenderOption : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteRenderOption (collectionId As String, renderOptionId As String, context As RequestContext) As Response

Parameters

collectionId
String

Unique identifier for the STAC collection.

renderOptionId
String

Unique identifier for the render option.

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

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

Service returned a non-success status code.

Applies to

DeleteRenderOption(String, String, CancellationToken)

Source:
StacClient.cs

Delete a render option for a given collection.

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

Parameters

collectionId
String

Unique identifier for the STAC collection.

renderOptionId
String

Unique identifier for the render option.

cancellationToken
CancellationToken

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

Returns

Exceptions

collectionId or renderOptionId is null.

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

Service returned a non-success status code.

Applies to