  | MediaWikiHelperPageStubFromJson Method | 
This is preliminary documentation and is subject to change.
            Creates a 
WikiPageStub instance from the given raw page information.
            
 Namespace: WikiClientLibrary.InfrastructuresAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntaxpublic static WikiPageStub PageStubFromJson(
	JsonObject jPage
)
Public Shared Function PageStubFromJson ( 
	jPage As JsonObject
) As WikiPageStub
Dim jPage As JsonObject
Dim returnValue As WikiPageStub
returnValue = MediaWikiHelper.PageStubFromJson(jPage)
public:
static WikiPageStub PageStubFromJson(
	JsonObject^ jPage
)
static member PageStubFromJson : 
        jPage : JsonObject -> WikiPageStub Parameters
- jPage  JsonObject
 - The JSON page-like object.
 
Return Value
WikiPageStubThe page stub that contains the information given in 
jPage.
Exceptions
Remarks
            A typical JSON page-like object has the following structure
            
{
    
    "title": "Title",
    "pageid": 1234,
    "ns": 0
    
    "special": "",
    "missing": "",
    "invalid": ""
}
            A valid JSON page-like object should at least has 
title+
ns, 
pageid, or both.
            The status flag corresponds with 
format specification for Boolean
            in MediaWiki API.
            
See Also