Click or drag to resize

WikiResponseMessageParserT Class

This is preliminary documentation and is subject to change.

A strong-typed base class for implementing IWikiResponseMessageParserT.
Inheritance Hierarchy

Namespace: WikiClientLibrary.Client
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public abstract class WikiResponseMessageParser<T> : IWikiResponseMessageParser<T>

Type Parameters

T
The type of parsed response value.

The WikiResponseMessageParserT type exposes the following members.

Constructors
 NameDescription
Protected methodWikiResponseMessageParserTInitializes a new instance of the WikiResponseMessageParserT class
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodParseResponseAsync Parses the specified HTTP response message.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Explicit Interface Implementations
 NameDescription
Explicit interface implementationPrivate methodIWikiResponseMessageParserTParseResponseAsync Parses the specified HTTP response message.
Top
Remarks

It's suggested you start from derive from this class to implement IWikiResponseMessageParserT.

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

See Also