Interface ICommonApi
Represents a collection of functions to interact with the API endpoints
Inherited Members
Namespace: Algorand.V2.Indexer
Assembly: Algorand.dll
Syntax
public interface ICommonApi : IApiAccessor
  Methods
| Improve this Doc View SourceMakeHealthCheck()
Returns 200 if healthy.
Declaration
HealthCheck MakeHealthCheck()
  Returns
| Type | Description | 
|---|---|
| HealthCheck | HealthCheck  | 
      
Exceptions
| Type | Condition | 
|---|---|
| ApiException | Thrown when fails to make API call  | 
      
MakeHealthCheckAsync()
Returns 200 if healthy.
Declaration
Task<HealthCheck> MakeHealthCheckAsync()
  Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<HealthCheck> | Task of HealthCheck  | 
      
Exceptions
| Type | Condition | 
|---|---|
| ApiException | Thrown when fails to make API call  | 
      
MakeHealthCheckAsyncWithHttpInfo()
Returns 200 if healthy.
Declaration
Task<ApiResponse<HealthCheck>> MakeHealthCheckAsyncWithHttpInfo()
  Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<ApiResponse<HealthCheck>> | Task of ApiResponse (HealthCheck)  | 
      
Exceptions
| Type | Condition | 
|---|---|
| ApiException | Thrown when fails to make API call  | 
      
MakeHealthCheckWithHttpInfo()
Returns 200 if healthy.
Declaration
ApiResponse<HealthCheck> MakeHealthCheckWithHttpInfo()
  Returns
| Type | Description | 
|---|---|
| ApiResponse<HealthCheck> | ApiResponse of HealthCheck  | 
      
Exceptions
| Type | Condition | 
|---|---|
| ApiException | Thrown when fails to make API call  |