TradeMe.Api.Client.Client.RetrieveLocalitiesThreeTier C# (CSharp) Method

RetrieveLocalitiesThreeTier() public method

Performs the Localities methods: three-tier locality dataset

Returns three-tier locality hierarchy of regions, districts and their respective suburbs. These values are used in Trade Me Property, Trade Me Jobs and Services.

DOES NOT REQUIRE AUTHENTICATION.
public RetrieveLocalitiesThreeTier ( ) : LocalityCollection
return LocalityCollection
        public LocalityCollection RetrieveLocalitiesThreeTier()
        {
            if (_catalogue == null)
            {
                _catalogue = new CatalogueMethods(_connection);
            }

            return _catalogue.RetrieveLocalitiesThreeTier();
        }
Client