 | 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.InfrastructuresAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic static IEnumerable<KeyValuePair<string, Object>> EnumValues(
Object dict
)
Public Shared Function EnumValues (
dict As Object
) As IEnumerable(Of KeyValuePair(Of String, Object))
Dim dict As Object
Dim returnValue As IEnumerable(Of KeyValuePair(Of String, Object))
returnValue = MediaWikiHelper.EnumValues(dict)
public:
static IEnumerable<KeyValuePair<String^, Object^>>^ EnumValues(
Object^ dict
)
static member EnumValues :
dict : Object -> IEnumerable<KeyValuePair<string, Object>>
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,
ObjectA sequence containing the enumerated key-value pairs.
See Also