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

RemoveSavedFavorite() public method

Performs the Favourites method: Deletes a saved search, category or seller from the currently authenticated user’s favourites. DELETE

REQUIRES AUTHENTICATION.
public RemoveSavedFavorite ( string favoriteId, string type ) : System.Xml.Linq.XDocument
favoriteId string The ID of the favourite.
type string The type of favourite (must be “Category”, “Search”, “AttributeSearch” or “Seller”).
return System.Xml.Linq.XDocument
        public XDocument RemoveSavedFavorite(string favoriteId, string type)
        {
            if (_favourites == null)
            {
                _favourites = new FavouriteMethods(_connection);
            }

            return _favourites.RemoveSavedFavorite(favoriteId, type);
        }
Client