TradeMe.Api.Client.CatalogueMethods.RetrieveFeesForCategory C# (CSharp) Метод

RetrieveFeesForCategory() публичный Метод

Performs the category method: Retrieves a list of fees for a specific category. GET

DOES NOT REQUIRE AUTHENTICATION.
public RetrieveFeesForCategory ( string categoryNumber ) : ListingFees
categoryNumber string The number of the category to retrieve fees for.
Результат ListingFees
        public ListingFees RetrieveFeesForCategory(string categoryNumber)
        {
            var url = String.Format(Constants.Culture, "{0}/{1}/{2}{3}", Constants.CATEGORIES, categoryNumber,
                                    Constants.FEES, Constants.XML);

            var getRequest = _connection.UnauthenticatedConnection(url);
            var xml = getRequest.ToString();

            return Deserializer<ListingFees>.Deserialize(new ListingFees(), xml);
        }