| QueryPageResultItemValue Property |
This is preliminary documentation and is subject to change.
Value associated with the page or the entry specified by
Title, if applicable.
Namespace: WikiClientLibrary.GeneratorsAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public string Value { get; init; }
Public Property Value As String
Get
Set
Dim instance As QueryPageResultItem
Dim value As String
value = instance.Value
instance.Value = value
public:
property String^ Value {
String^ get ();
void set (String^ value);
}
member Value : string with get, set
Property Value
StringRemarks
Depending on the nature of different types of query pages, this property can be
- stringified number –
referencing page count (Mostcategories, Mostimages, Mostinterwikis, Mostlinked, Wantedfiles, Wantedpages, etc.),
revision count (Fewestrevisions, etc.),
page length (Shortpage, Longpage),
usage count (GadgetUsage),
etc.
- stringified UNIX timestamp – page time stamp (Ancientpages, etc.); consider retrieving the timestamp from Timestamp or leveraging FromUnixTimeSeconds(Int64) to parse the value.
- etc. – "0", "1", or stringified sequence number.
See Also