 | WikiSiteGetMessagesAsync(IEnumerableString) Method |
This is preliminary documentation and is subject to change.
Get the content of some or all MediaWiki interface messages.
Namespace: WikiClientLibrary.SitesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic Task<IDictionary<string, string>> GetMessagesAsync(
IEnumerable<string> messages
)
Public Function GetMessagesAsync (
messages As IEnumerable(Of String)
) As Task(Of IDictionary(Of String, String))
Dim instance As WikiSite
Dim messages As IEnumerable(Of String)
Dim returnValue As Task(Of IDictionary(Of String, String))
returnValue = instance.GetMessagesAsync(messages)
public:
Task<IDictionary<String^, String^>^>^ GetMessagesAsync(
IEnumerable<String^>^ messages
)
member GetMessagesAsync :
messages : IEnumerable<string> -> Task<IDictionary<string, string>>
Parameters
- messages IEnumerableString
- A sequence of message names.
Return Value
TaskIDictionaryString,
String
A dictionary of message name - message content pairs.
If some messages cannot be found, the corresponding value will be
null.
Exceptions
See Also