Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
Tobias Klika edited this page Oct 17, 2013 · 1 revision

All Modify methods accept either the itemID (as int) or a PocketItem as parameter.

Archive the specified item:

bool isSuccess = await _client.Archive(myPocketItem);

Un-archive the specified item:

bool isSuccess = await _client.Unarchive(myPocketItem);

Favorites the specified item:

bool isSuccess = await _client.Favorite(myPocketItem);

Un-favorites the specified item:

bool isSuccess = await _client.Unfavorite(myPocketItem);

Deletes the specified item:

bool isSuccess = await _client.Delete(myPocketItem);
Clone this wiki locally