C# Class MyAnimeListSharp.Facade.MangaListMethods

Represents a "Manga List Methods" section in MyAnimeList.net specification. http://myanimelist.net/modules.php?go=api
Inheritance: MyAnimeListSharp.Core.MyAnimeListMethods
Show file Open project: dance2die/MyAnimeListSharp Class Usage Examples

Public Methods

Method Description
AddManga ( int id, MangaValues mangaValues ) : string

Add Manga info by ID

AddManga ( int id, string data ) : string

Add Manga info by ID

DeleteManga ( int id ) : string

Delete Manga info by ID

MangaListMethods ( ICredentialContext credentialContext ) : MyAnimeListSharp.Auth
UpdateManga ( int id, MangaValues mangaValues ) : string

Update Manga info by ID

UpdateManga ( int id, string data ) : string

Update Manga info by ID

Method Details

AddManga() public method

Add Manga info by ID
public AddManga ( int id, MangaValues mangaValues ) : string
id int Manga ID on MyAnimeList.net
mangaValues MyAnimeListSharp.Core.MangaValues object that represents XML specification
return string

AddManga() public method

Add Manga info by ID
public AddManga ( int id, string data ) : string
id int Manga ID on MyAnimeList.net
data string XML string specified on MyAnimeList.net
return string

DeleteManga() public method

Delete Manga info by ID
public DeleteManga ( int id ) : string
id int Manga review to delete
return string

MangaListMethods() public method

public MangaListMethods ( ICredentialContext credentialContext ) : MyAnimeListSharp.Auth
credentialContext ICredentialContext
return MyAnimeListSharp.Auth

UpdateManga() public method

Update Manga info by ID
public UpdateManga ( int id, MangaValues mangaValues ) : string
id int Manga ID on MyAnimeList.net
mangaValues MyAnimeListSharp.Core.MangaValues object that represents XML specification
return string

UpdateManga() public method

Update Manga info by ID
public UpdateManga ( int id, string data ) : string
id int Manga ID on MyAnimeList.net
data string XML string specified on MyAnimeList.net
return string