Click or drag to resize

QueryPageGenerator Class

This is preliminary documentation and is subject to change.

Get a list provided by a QueryPage-based special page. (MediaWiki 1.18)
Inheritance Hierarchy

Namespace: WikiClientLibrary.Generators
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.8.0-int.8+f07259cca53448109bd542f6a3e53c54ddd48d58
Syntax
public class QueryPageGenerator : WikiPageGenerator<QueryPageResultItem>

The QueryPageGenerator type exposes the following members.

Constructors
 NameDescription
Public methodQueryPageGenerator(WikiSite)Initializes a new instance of the QueryPageGenerator class
Public methodQueryPageGenerator(WikiSite, String)Initializes a new instance of the QueryPageGenerator class
Top
Properties
 NameDescription
Public propertyCompatibilityOptions Gets/sets the compatibility options used with this list.
(Inherited from WikiListT)
Protected propertyDistinctGeneratedPages When using the default implementation of EnumPagesAsync(IWikiPageQueryProvider), determines whether to remove duplicate page results generated from generator results. This property does not affect the behavior of EnumItemsAsync(CancellationToken).
(Inherited from WikiPageGeneratorTItem)
Public propertyGeneratorName The name of generator, used as the value of generator parameter in action=query request.
(Inherited from WikiPageGeneratorTItem)
Public propertyListName The name of list, used as the value of list parameter in action=query request.
(Overrides WikiListTListName)
Public propertyPaginationSize Gets/sets maximum items returned per MediaWiki API invocation.
(Inherited from WikiListT)
Public propertyQueryPageName Gets/sets the name of the special page. The name is case sensitive.
Public propertySiteGets the MediaWiki site this instance applies to.
(Inherited from WikiListT)
Top
Methods
 NameDescription
Public methodEnumGeneratorParameters Fills generator parameters for action=query&generator= request.
(Inherited from WikiPageGeneratorTItem)
Public methodEnumItemsAsync Asynchronously enumerates all the items in the list.
(Inherited from WikiListT)
Public methodEnumListParameters When overridden, fills generator parameters for action=query&list={ListName} request.
(Overrides WikiListTEnumListParameters)
Public methodEnumPagesAsync Asynchronously generates the sequence of pages.
(Inherited from WikiPageGeneratorTItem)
Public methodEnumPagesAsync(IWikiPageQueryProvider) Asynchronously generates the sequence of pages.
(Inherited from WikiPageGeneratorTItem)
Public methodEnumPagesAsync(PageQueryOptions) Asynchronously generates the sequence of pages.
(Inherited from WikiPageGeneratorTItem)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetQueryPageNamesAsync Asynchronously get a list of available QueryPage-based special pages. The item in the list can later be used as a value of QueryPageName.
Public methodStatic memberGetQueryPageNamesAsync(WikiSite) Asynchronously get a list of available QueryPage-based special pages. The item in the list can later be used as a value of QueryPageName.
Public methodGetQueryPageResultInfoAsync Retrieve the basic information of the result set of the currently specified MediaWiki query page.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodItemFromJson Parses an item contained in the action=query&list= JSON response.
(Overrides WikiListTItemFromJson(JToken))
Protected methodItemsFromResponse From the given MediaWiki API response of the MediaWiki list request, locates the array of items whose items will be processed by ItemFromJson(JToken).
(Overrides WikiListTItemsFromResponse(JToken))
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodOnEnumItemsFailed When overriden, called when there is exception raised when executing the asynchronous generator function inside EnumItemsAsync(CancellationToken).
(Inherited from WikiListT)
Public methodToStringReturns a string that represents the current object.
(Overrides ObjectToString)
Top
Remarks

For a list of available query pages, See mw:API:Querypage. You can also invoke GetQueryPageNamesAsync to ask for the list in the runtime.

Not all types of query pages yield list of page titles (e.g., GadgetUsage or MediaStatistics). Invoking EnumPagesAsync may yield pages that does not actually exist. In this case, consider using EnumItemsAsync(CancellationToken) instead.

See Also