  | RevisionFetchRevisionsAsync(WikiSite, Int64) Method | 
This is preliminary documentation and is subject to change.
            Fetch revisions by revid sequence.
            
Namespace: WikiClientLibrary.PagesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic static IAsyncEnumerable<Revision?> FetchRevisionsAsync(
	WikiSite site,
	params long[] revisionIds
)
Public Shared Function FetchRevisionsAsync ( 
	site As WikiSite,
	ParamArray revisionIds As Long()
) As IAsyncEnumerable(Of Revision)
Dim site As WikiSite
Dim revisionIds As Long()
Dim returnValue As IAsyncEnumerable(Of Revision)
returnValue = Revision.FetchRevisionsAsync(site, 
	revisionIds)
public:
static IAsyncEnumerable<Revision^>^ FetchRevisionsAsync(
	WikiSite^ site, 
	... array<long long>^ revisionIds
)
static member FetchRevisionsAsync : 
        site : WikiSite * 
        revisionIds : int64[] -> IAsyncEnumerable<Revision> Parameters
- site  WikiSite
 - The site to fetch revisions from.
 - revisionIds  Int64
 - The desired revision Ids.
 
Return Value
IAsyncEnumerableRevision
Exceptions
RemarksThe returned sequence will have the SAME order as specified in revisionIds.
The WikiPage of returned Revision will be a valid object.
            However, its LastRevision and Content will corresponds
            to the latest revision fetched in this invocation, and pages with the same title
            share the same reference.
If there's invalid revision id in revisionIds, an ArgumentException
            will be thrown while enumerating.
See Also