 | 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.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntaxpublic 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.
RemarksSee 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