  | WikiaSiteWikiaApiExtensionsFetchRelatedPagesAsync(WikiaSite, Int64) Method | 
This is preliminary documentation and is subject to change.
            Asynchronously fetches the specified page's related pages.
            
Namespace: WikiClientLibrary.Wikia.WikiaApiAssembly: WikiClientLibrary.Wikia (in WikiClientLibrary.Wikia.dll) Version: 0.9.0-int.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic static Task<IList<RelatedPageItem>> FetchRelatedPagesAsync(
	this WikiaSite site,
	long pageId
)
<ExtensionAttribute>
Public Shared Function FetchRelatedPagesAsync ( 
	site As WikiaSite,
	pageId As Long
) As Task(Of IList(Of RelatedPageItem))
Dim site As WikiaSite
Dim pageId As Long
Dim returnValue As Task(Of IList(Of RelatedPageItem))
returnValue = site.FetchRelatedPagesAsync(pageId)
public:
[ExtensionAttribute]
static Task<IList<RelatedPageItem^>^>^ FetchRelatedPagesAsync(
	WikiaSite^ site, 
	long long pageId
)
[<ExtensionAttribute>]
static member FetchRelatedPagesAsync : 
        site : WikiaSite * 
        pageId : int64 -> Task<IList<RelatedPageItem>> Parameters
- site  WikiaSite
 - The site to issue the request.
 - pageId  Int64
 - ID of the page to find the related ones.
 
Return Value
TaskIListRelatedPageItemUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
WikiaSite. 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
RemarksThis overload fetches 10 items at most.
See Also