DataClient.RegisterMosaicsSearchAsync Method

Definition

Overloads

Name Description
RegisterMosaicsSearchAsync(RegisterMosaic, CancellationToken)

Register a Search query.

RegisterMosaicsSearchAsync(RequestContent, RequestContext)

[Protocol Method] Register a Search query

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

RegisterMosaicsSearchAsync(RegisterMosaic, CancellationToken)

Source:
DataClient.cs

Register a Search query.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.TilerMosaicSearchRegistrationResult>> RegisterMosaicsSearchAsync(Azure.Analytics.PlanetaryComputer.RegisterMosaic body, System.Threading.CancellationToken cancellationToken = default);
abstract member RegisterMosaicsSearchAsync : Azure.Analytics.PlanetaryComputer.RegisterMosaic * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.TilerMosaicSearchRegistrationResult>>
override this.RegisterMosaicsSearchAsync : Azure.Analytics.PlanetaryComputer.RegisterMosaic * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.TilerMosaicSearchRegistrationResult>>
Public Overridable Function RegisterMosaicsSearchAsync (body As RegisterMosaic, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of TilerMosaicSearchRegistrationResult))

Parameters

body
RegisterMosaic

The request body for the registerMosaicsSearch request.

cancellationToken
CancellationToken

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

Returns

Exceptions

body is null.

Service returned a non-success status code.

Applies to

RegisterMosaicsSearchAsync(RequestContent, RequestContext)

Source:
DataClient.cs

[Protocol Method] Register a Search query

  • 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> RegisterMosaicsSearchAsync(Azure.Core.RequestContent content, Azure.RequestContext context = default);
abstract member RegisterMosaicsSearchAsync : Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.RegisterMosaicsSearchAsync : Azure.Core.RequestContent * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RegisterMosaicsSearchAsync (content As RequestContent, Optional context As RequestContext = Nothing) As Task(Of Response)

Parameters

content
RequestContent

The content to send as the body of the request.

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

content is null.

Service returned a non-success status code.

Applies to