Click or drag to resize

WikiaSiteInvokeWikiaAjaxAsync(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.3+0a73c45f0c78941900e328c6c6b819597b665e00
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

TaskJsonNode
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