| WikiListTItemFromJson Method |
This is preliminary documentation and is subject to change.
Parses an item contained in the action=query&list= JSON response.
Namespace: WikiClientLibrary.Generators.PrimitiveAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax protected abstract T ItemFromJson(
JsonNode json
)
Protected MustOverride Function ItemFromJson (
json As JsonNode
) As T
Dim json As JsonNode
Dim returnValue As T
returnValue = Me.ItemFromJson(json)
protected:
virtual T ItemFromJson(
JsonNode^ json
) abstract
abstract ItemFromJson :
json : JsonNode -> 'T
Parameters
- json JsonNode
- One of the item node under the .
Return Value
TThe item that will be returned in the sequence from
EnumItemsAsync(CancellationToken).
See Also