Click or drag to resize

WikiaSite.InvokeWikiaAjaxAsync(WikiRequestMessage, CancellationToken) Method

This is preliminary documentation and is subject to change.

Invokes index.php call with action=ajax query.

Namespace: WikiClientLibrary.Wikia.Sites
Assembly: WikiClientLibrary.Wikia (in WikiClientLibrary.Wikia.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public Task<JsonNode> InvokeWikiaAjaxAsync(
	WikiRequestMessage request,
	CancellationToken cancellationToken
)

Parameters

request  WikiRequestMessage
The request message.
cancellationToken  CancellationToken
The token used to cancel the operation.

Return Value

Task<JsonNode>
The parsed JSON root of response.
Exceptions
ExceptionCondition
ArgumentNullExceptionEither request or responseParser is null.
Remarks

This overload uses WikiaJsonResponseParser to parse the response.

This method will automatically add action=ajax field in the request.

See Also