Click or drag to resize

IWikiResponseMessageParserT Interface

This is preliminary documentation and is subject to change.

Provides methods for parsing HttpResponseMessage into appropriate type of data that can be handled by the subsequent procedure.

Namespace: WikiClientLibrary.Client
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntax
public interface IWikiResponseMessageParser<out T>

Type Parameters

T
The type of parsed response.

The IWikiResponseMessageParserT type exposes the following members.

Methods
 NameDescription
Public methodParseResponseAsync Parses the specified HTTP response message.
Top
Remarks

It's suggested to derive your response message parser classes from WikiResponseMessageParserT, instead of implementing this interface directly.

For the role this interface plays in invoking wiki API, see InvokeAsyncT(String, WikiRequestMessage, IWikiResponseMessageParserT, CancellationToken).

See Also