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

SaveSeller() public method

Performs the Favourites method: Save Seller.

Serializes the given SaveSellerRequest into xml.

REQUIRES AUTHENTICATION.
public SaveSeller ( SaveSellerRequest saveSeller ) : System.Xml.Linq.XDocument
saveSeller SaveSellerRequest The object that will be serialized into xml and then sent in a POST message.
return System.Xml.Linq.XDocument
        public XDocument SaveSeller(SaveSellerRequest saveSeller)
        {
            if (_favourites == null)
            {
                _favourites = new FavouriteMethods(_connection);
            }

            return _favourites.SaveSeller(saveSeller);
        }
Client