Click or drag to resize

IWikiResponseMessageParser<T> 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 IWikiResponseMessageParser<T> 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 WikiResponseMessageParser<T>, instead of implementing this interface directly.

For the role this interface plays in invoking wiki API, see InvokeAsync<T>(String, WikiRequestMessage, IWikiResponseMessageParser<T>, CancellationToken).

See Also