 | WikiSiteGetMessageAsync(String) Method |
This is preliminary documentation and is subject to change.
Get the content of MediaWiki interface message.
Namespace: WikiClientLibrary.SitesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic Task<string?> GetMessageAsync(
string message
)
Public Function GetMessageAsync (
message As String
) As Task(Of String)
Dim instance As WikiSite
Dim message As String
Dim returnValue As Task(Of String)
returnValue = instance.GetMessageAsync(message)
public:
Task<String^>^ GetMessageAsync(
String^ message
)
member GetMessageAsync :
message : string -> Task<string>
Parameters
- message String
- The message name.
Return Value
TaskString
The message content. OR
null if the messages cannot be found.
Exceptions
See Also