| ScribuntoEvaluationResultIsNewSession Property |
This is preliminary documentation and is subject to change.
Whether the server indicates this session ID is new.
Namespace: WikiClientLibrary.ScribuntoAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax [JsonPropertyNameAttribute("sessionIsNew")]
public bool IsNewSession { get; init; }
<JsonPropertyNameAttribute("sessionIsNew")>
Public Property IsNewSession As Boolean
Get
Set
Dim instance As ScribuntoEvaluationResult
Dim value As Boolean
value = instance.IsNewSession
instance.IsNewSession = value
public:
[JsonPropertyNameAttribute(L"sessionIsNew")]
property bool IsNewSession {
bool get ();
void set (bool value);
}
[<JsonPropertyNameAttribute("sessionIsNew")>]
member IsNewSession : bool with get, set
Property Value
BooleanRemarks
Note that as of MW 1.34, this property is true only
if the session with is just created,
or the session has been lost on server (e.g. due to session timeout).
If you resets/clears the session, which does not change the session ID,
this property will be false.
See Also