Google.GData.ContentForShopping.ContentForShoppingService.DeleteProducts C# (CSharp) Method

DeleteProducts() public method

takes a list of products, adds delete as the batch operation and delete them
public DeleteProducts ( List products ) : Google.GData.ContentForShopping.ProductFeed
products List the list of products to delete
return Google.GData.ContentForShopping.ProductFeed
        public ProductFeed DeleteProducts(List<ProductEntry> products) {
            ProductFeed feed = CreateBatchFeed(products, GDataBatchOperationType.delete);
            return Batch(feed);
        }

Same methods

ContentForShoppingService::DeleteProducts ( List products, string accountId ) : Google.GData.ContentForShopping.ProductFeed
ContentForShoppingService::DeleteProducts ( List products, string accountId, string projection ) : Google.GData.ContentForShopping.ProductFeed