| LogEventsListLogAction Property |
This is preliminary documentation and is subject to change.
Filter log actions to only this type.
Namespace: WikiClientLibrary.GeneratorsAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public string? LogAction { get; set; }
Public Property LogAction As String
Get
Set
Dim instance As LogEventsList
Dim value As String
value = instance.LogAction
instance.LogAction = value
public:
property String^ LogAction {
String^ get ();
void set (String^ value);
}
member LogAction : string with get, set
Property Value
StringThe log action name. When
LogType is
null,
this is the log type name and action name, such as
block/block,
block/unblock;
otherwise, this is only the action name
block,
unblock,
and
LogType will be prepended to the action name automatically.
Remarks See LogActions for a list of predefined values.
For MediaWiki 1.19 and before, using the same LogAction as LogType is not allowed.
For example, you should set LogType to "move",
and LogAction to null instead of "move",
or "move/move", to filter in all the page move events.
See Also