MarketPlacesApi
Summary
public MarketplacesDto Marketplaces()
This function will return a list of marketplaces that are available to the user.
public MarketplaceDto Marketplace(string name)
This function will return a MarketplaceDto object from the API.
private readonly string _requestUriBase
private Uri MarketplacesUri()
It returns a Uri object that represents the URL for the marketplaces endpoint.
private Uri MarketplaceUri(string name)
It takes a string and returns a URI.
Members
public MarketplacesDto Marketplaces()
This function will return a list of marketplaces that are available to the user.
Returns
A list of marketplaces.
public MarketplaceDto Marketplace(string name)
This function will return a MarketplaceDto object from the API.
Parameters
nameThe name of the marketplace you want to retrieve.
Returns
A MarketplaceDto object
private readonly string _requestUriBase
private Uri MarketplacesUri()
It returns a Uri object that represents the URL for the marketplaces endpoint.
private Uri MarketplaceUri(string name)
It takes a string and returns a URI.
Parameters
nameThe name of the marketplace you want to retrieve.
Last updated