StacClient.GetCollectionQueryablesAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| GetCollectionQueryablesAsync(String, RequestContext) |
[Protocol Method] List all queryables in a given collection
|
| GetCollectionQueryablesAsync(String, CancellationToken) |
List all queryables in a given collection. |
GetCollectionQueryablesAsync(String, RequestContext)
- Source:
- StacClient.cs
[Protocol Method] List all queryables in a given 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> GetCollectionQueryablesAsync(string collectionId, Azure.RequestContext context);
abstract member GetCollectionQueryablesAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetCollectionQueryablesAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetCollectionQueryablesAsync (collectionId As String, context As RequestContext) As Task(Of Response)
Parameters
- collectionId
- String
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.
Service returned a non-success status code.
Applies to
GetCollectionQueryablesAsync(String, CancellationToken)
- Source:
- StacClient.cs
List all queryables in a given collection.
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult>> GetCollectionQueryablesAsync(string collectionId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetCollectionQueryablesAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult>>
override this.GetCollectionQueryablesAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Analytics.PlanetaryComputer.QueryableDefinitionsResult>>
Public Overridable Function GetCollectionQueryablesAsync (collectionId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of QueryableDefinitionsResult))
Parameters
- collectionId
- String
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.
Service returned a non-success status code.