Click or drag to resize

WikiaQueryRequestMessage Class

This is preliminary documentation and is subject to change.

The request message used with Wikia publicized and non-public API endpoints.
Inheritance Hierarchy
SystemObject
  WikiClientLibrary.ClientWikiRequestMessage
    WikiClientLibrary.WikiaWikiaQueryRequestMessage

Namespace: WikiClientLibrary.Wikia
Assembly: WikiClientLibrary.Wikia (in WikiClientLibrary.Wikia.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public class WikiaQueryRequestMessage : WikiRequestMessage

The WikiaQueryRequestMessage type exposes the following members.

Constructors
 NameDescription
Public methodWikiaQueryRequestMessage Initializes a WikiaQueryRequestMessage instance with the automatically-generated message ID and empty query fields.
Public methodWikiaQueryRequestMessage(Object) Initializes a WikiaQueryRequestMessage instance with the message ID and query fields.
Public methodWikiaQueryRequestMessage(Object, Boolean) Initializes a WikiaQueryRequestMessage instance with the message ID and query fields.
Public methodWikiaQueryRequestMessage(String, Object) Initializes a WikiaQueryRequestMessage instance with the message ID and query fields.
Public methodWikiaQueryRequestMessage(String, Object, Boolean) Initializes a WikiaQueryRequestMessage instance with the message ID and query fields.
Top
Properties
 NameDescription
Public propertyFields Gets a read-only list of all the fields in the form.
Public propertyId Id of the request, for tracing.
(Inherited from WikiRequestMessage)
Public propertyUseHttpPost Gets a value that indicates whether the message should be sent via HTTP POST instead of HTTP GET.
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 methodGetHttpContent Gets the HttpContent corresponding to this message.
(Overrides WikiRequestMessageGetHttpContent)
Public methodGetHttpMethod Gets the HTTP method used to send the request.
(Overrides WikiRequestMessageGetHttpMethod)
Public methodGetHttpQuery Gets the URI query part for the endpoint invocation.
(Overrides WikiRequestMessageGetHttpQuery)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from WikiRequestMessage)
Top
Remarks
The requests are issued with HTTP GET method. The fiedls are concatenated after the endpoint URL as URI query part (e.g. endpointUrl?query).
See Also