TradeMe.Api.Client.SearchMethods.SearchMotorBikes C# (CSharp) Méthode

SearchMotorBikes() public méthode

Performs the Search Method: Search Motor Bikes using the "query" string provided - should be the "Search/Motors/Bikes.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/".

DOES NOT REQUIRE AUTHENTICATION.
public SearchMotorBikes ( string query ) : MotorBikes
query string The query string that will be added to the base url and used to connect to the API.
Résultat MotorBikes
        public MotorBikes SearchMotorBikes(string query)
        {
            var getRequest = _connection.UnauthenticatedConnection(query);
            var xml = getRequest.ToString();

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

Same methods

SearchMethods::SearchMotorBikes ( string searchString, SortOrder sortOrder, decimal priceMin, decimal priceMax, string make, BikeType type, int yearMin, int yearMax, int energySizeMin, int energySizeMax, System.DateTime dateFrom, int page, int rows ) : MotorBikes