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

MemberPhotos() public method

Performs the Photo Method: Retrieve a list of member photos.

Creates a query string and performs the request.

REQUIRES AUTHENTICATION.

public MemberPhotos ( ) : MemberPhotos
return MemberPhotos
        public MemberPhotos MemberPhotos()
        {
            if (_photo == null)
            {
                _photo = new PhotoMethods(_connection);
            }

            return _photo.MemberPhotos();
        }

Same methods

Client::MemberPhotos ( string query ) : MemberPhotos
Client