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

MemberListings() public method

Performs the Membership Method: Retrieve a member’s listings

using the "query" string provided - should be the "Member/{member_id}/Listings.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/".

DOES NOT REQUIRE AUTHENTICATION.
public MemberListings ( string query ) : Listings
query string The query string that will be added to the base url and used to connect to the API with.
return Listings
        public Listings MemberListings(string query)
        {
            if (_membership == null)
            {
                _membership = new MembershipMethods(_connection);
            }

            return _membership.MemberListings(query);
        }
Client