Click or drag to resize

WikiaSiteInvokeWikiaApiAsync(String, WikiRequestMessage, CancellationToken) Method

This is preliminary documentation and is subject to change.

Invokes Wikia API v1 call.

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

Parameters

relativeUri  String
The URI relative to WikiaApiRootUrl. It often starts with a slash.
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.
See Also