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.3+0a73c45f0c78941900e328c6c6b819597b665e00
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