DotNetWikiBot Framework Documentation
Assembly: DotNetWikiBot (in DotNetWikiBot.dll) Version: 0.0.0.0
Gets page titles for this PageList from "Special:Allpages" MediaWiki page.
That means a list of pages in alphabetical order.
Namespace: DotNetWikiBotAssembly: DotNetWikiBot (in DotNetWikiBot.dll) Version: 0.0.0.0
Syntax
C# |
---|
public void FillFromAllPages( string firstPageTitle, int neededNSpace, bool acceptRedirects, int limit, string lastPageTitle ) |
Parameters
- firstPageTitle
- Type: System..::..String
Title of page to start listing from. The title must have no namespace prefix (like "Talk:"). Just a few first letters can be specified instead of full real title. Pass the empty string or null to start from the very beginning.
- neededNSpace
- Type: System..::..Int32
The key of namespace to get pages from. Zero is a key of default namespace.
- acceptRedirects
- Type: System..::..Boolean
Set this to "false" to exclude redirects.
- limit
- Type: System..::..Int32
Maximum allowed limit of pages to get.
- lastPageTitle
- Type: System..::..String
Title of page to stop listing at. To get all pages with some prefix use the following method: FillFromAllPages("Prefix",0,false,100,"Prefix~")