| 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.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public 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