DotNetWikiBot Framework Documentation
Overload List
Name | Description | |
---|---|---|
Page()()()() | This constructor creates Page object without title using most recently
created Site object. | |
Page(Int64) | This constructor creates Page object with specified page's numeric revision ID
(also called "oldid") using most recently created Site object. | |
Page(String) | This constructor creates Page object with specified title using most recently
created Site object. | |
Page(Site) | This constructor creates empty Page object with specified Site object,
but without title. Avoid using this constructor needlessly. | |
Page(Site, Int64) | This constructor creates Page object with specified page's numeric revision ID
(also called "oldid"). Page title is retrieved automatically
in this constructor. | |
Page(Site, String) | This constructor creates Page object with specified title and specified
Site object. This is preferable constructor. Basic title normalization occurs during
construction.
When constructed, new Page object doesn't contain text, use Load()()()()
method to get text and metadata from live wiki. |