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

MemberListingsById() public method

Performs the Membership Method: Retrieve a member’s listings.

Creates a query string using the parameters provided.

DOES NOT REQUIRE AUTHENTICATION.
public MemberListingsById ( string id ) : Listings
id string The members id.
return Listings
        public Listings MemberListingsById(string id)
        {
            if (_membership == null)
            {
                _membership = new MembershipMethods(_connection);
            }

            return _membership.MemberListingsById(id);
        }
Client