TagsImp..::..GetTagAsync Method

Get information about a given cryptocurrency tag.

Namespace:  CoinpaprikaApi.Imp
Assembly:  CoinpaprikaApi (in CoinpaprikaApi.dll)

Syntax


public Task<TagItem> GetTagAsync(
	string tag_id,
	bool include_coins,
	bool include_icos
)
Public Function GetTagAsync ( _
	tag_id As String, _
	include_coins As Boolean, _
	include_icos As Boolean _
) As Task(Of TagItem)

Parameters

tag_id
Type: String
The tag identifier (ex: blockchain-service).
include_coins
Type: Boolean
If set to true coin list will be included.
include_icos
Type: Boolean
If set to true icos list will be included.

Return Value

A Task<TagItem> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptiontag_id - Invalid value, tag_id must be a valid tag identified (ex: blockchain-service)