TradeMe.Api.Client.PhotoMethods.MemberPhotoDetails C# (CSharp) Method

MemberPhotoDetails() public method

Performs the Photo Method: Returns a list of the photos for the authenticated user, with extra usage data.

Creates a query string and performs the request.

REQUIRES AUTHENTICATION.
public MemberPhotoDetails ( ) : MemberPhotos
return MemberPhotos
        public MemberPhotos MemberPhotoDetails()
        {
            var query = String.Format("{0}/{1}{2}", Constants.PHOTOS, Constants.DETAILS, Constants.XML);
            return MemberPhotoDetails(query);
        }

Same methods

PhotoMethods::MemberPhotoDetails ( string query ) : MemberPhotos