Click or drag to resize

WikiSiteExtensionsParseRevisionAsync(WikiSite, Int64, ParsingOptions) Method

This is preliminary documentation and is subject to change.

Parsing the specific page revision, gets HTML and more information. (MediaWiki 1.12)

Namespace: WikiClientLibrary.Pages.Parsing
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public static Task<ParsedContentInfo> ParseRevisionAsync(
	this WikiSite site,
	long revId,
	ParsingOptions options
)

Parameters

site  WikiSite
The MediaWiki site to execute the request on.
revId  Int64
Id of the revision to be parsed.
options  ParsingOptions
Options for parsing.

Return Value

TaskParsedContentInfo

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type WikiSite. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionrevId is zero or negative.
See Also