Example: lr.message
The following example sends a message to the output if the login fails.
public int login(string username, string password)
{
//emulate failed login
return lr.FAIL;
}
int status = login("username","password");
if (status == lr.FAIL) {
string strOutputMsg="Error: Unable to login to server";
lr.message(strOutputMsg);
}