TradeMe.Api.Client.SearchMethods.SearchProperties C# (CSharp) Method

SearchProperties() public method

Performs the Search Methods: Search Residential Property, Search Residential Rental Property, Residential Open Homes, Search Commercial Property, Search Commercial Lease Property, Search Rural Property, Search Lifestyle Property, Search Retirement Villages,

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

DOES NOT REQUIRE AUTHENTICATION.
public SearchProperties ( string query ) : global::Properties
query string The query string that will be added to the base url and used to connect to the API with.
return global::Properties
        public global::Properties SearchProperties(string query)
        {
            var url = _connection.BaseUrl + query;
            return this.PropertyConnectionHelper(url);
        }