Skip to main content

1E 23.7 (SaaS)

true false

Keywords

true false

Purpose

Used as parameter values for certain Agent methods.

Description

true and false are keywords used as parameter values for Agent methods that required data-type 'bool'. Bool type parameter values do not accept @variables.

These keywords are not case-sensitive, but unlike other keywords, the convention is to use lowercase.

Examples

FileContent.FindAndAppend(FilePath: "c:\\temp\\queen.txt" , FindString: "i want to break free!" , AppendString: "I want to break free!" , Backup: true , CaseSensitive: false );

Tagging.Get(Name: "WithScanner" , Scopable: false );

NativeServices.RunCommand(CommandLine: "ping 127.0.0.1" , SplitLines:true, IgnoreExitCode:true);

Notes

True and False cannot be used in SQLite SELECT statements, which must use 1 and 0 instead.