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.2+447d1d590e6726b7881f750a0a0e42908f3e417e
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