| AccountBlockInfoIsAnonymousBlock Property |
This is preliminary documentation and is subject to change.
Whether the block only affects anonymous users.
Namespace: WikiClientLibrary.SitesAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax [JsonPropertyNameAttribute("blockanononly")]
public bool IsAnonymousBlock { get; init; }
<JsonPropertyNameAttribute("blockanononly")>
Public Property IsAnonymousBlock As Boolean
Get
Set
Dim instance As AccountBlockInfo
Dim value As Boolean
value = instance.IsAnonymousBlock
instance.IsAnonymousBlock = value
public:
[JsonPropertyNameAttribute(L"blockanononly")]
property bool IsAnonymousBlock {
bool get ();
void set (bool value);
}
[<JsonPropertyNameAttribute("blockanononly")>]
member IsAnonymousBlock : bool with get, set
Property Value
BooleanRemarks If the value of this property is false, the block is a "hard block" (affects logged-in users on a given IP/range).
Note that temporary users are not considered logged-in here - they are always blocked by IP-address blocks.
Note that user blocks are always hard blocks, since the target is logged in by definition.
See Block.php
for more information.
See Also