Click or drag to resize

MediaWikiHelperEnumValues Method

This is preliminary documentation and is subject to change.

Enumerates from either a sequence of key-value pairs, or the property-value pairs of an anonymous object.

Namespace: WikiClientLibrary.Infrastructures
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public static IEnumerable<KeyValuePair<string, Object>> EnumValues(
	Object dict
)

Parameters

dict  Object
A IEnumerableT of KeyValuePairTKey, TValue, where TKey should be String, while TValue can either be String or Object. Or an anonymous object, in which case, its properties and values are enumerated.

Return Value

IEnumerableKeyValuePairString, Object
A sequence containing the enumerated key-value pairs.
See Also