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

UnansweredQuestionsAll() public method

Performs the Listing Method: Retrieves a list of all the unanswered questions for all live auctions of the authenticated user. GET

REQUIRES AUTHENTICATION.
public UnansweredQuestionsAll ( ) : Questions
return Questions
        public Questions UnansweredQuestionsAll()
        {
            if (_listing == null)
            {
                _listing = new ListingMethods(_connection);
            }

            return _listing.UnansweredQuestionsAll();
        }
Client