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

SellDvdFromCatalogue() public method

List a DVD using listing details that are sourced from the Trade Me DVD catalogue.

REQUIRES AUTHENTICATION.
public SellDvdFromCatalogue ( SellCatalogueRequest request ) : XDocument
request SellCatalogueRequest The object that will be serialized into xml and then sent in a POST message.
return XDocument
        public XDocument SellDvdFromCatalogue(SellCatalogueRequest request)
        {
            if (_selling == null)
            {
                _selling = new SellingMethods(_connection);
            }

            return _selling.SellDvdFromCatalogue(request);
        }
Client