  | 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.4+fbadc980737ddc9bb67116900ecad57f84a0b241
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 = valuepublic:
[JsonPropertyNameAttribute(L"blockanononly")]
property bool IsAnonymousBlock {
	bool get ();
	void set (bool value);
}[<JsonPropertyNameAttribute("blockanononly")>]
member IsAnonymousBlock : bool with get, setProperty Value
Boolean
RemarksIf 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