Vehicle BOLO
Represents a "Be On the Look-Out" (BOLO) entry for a vehicle, indicating that it is subject to special attention from law enforcement.
public class VehicleBOLO;
IsActive
This property is read-only.
Indicates whether this BOLO entry is currently active. A BOLO is active if it has not been manually deactivated and its current date/time falls between its Issued and Expires dates.
public bool IsActive;
Reason
This property is read-only.
The descriptive reason for which this BOLO was issued.
public readonly string Reason;
Issued
This property is read-only.
The date and time when this BOLO was officially issued.
public readonly DateTime Issued;
Expires
This property is read-only.
The date and time when this BOLO is set to expire.
public readonly DateTime Expires;
IssuedBy
This property is read-only.
The agency or entity that issued this BOLO.
public readonly string IssuedBy;
Constructor
Initializes a new instance of the VehicleBOLO class with specified details.
public VehicleBOLO(string reason, DateTime issued, DateTime expires, string issuedBy)
Parameters
reason- Description: The reason for the BOLO.
issued- Description: The date and time when the BOLO was issued.
expires- Description: The date and time when the BOLO will expire.
issuedBy- Description: The agency or entity that issued the BOLO.
Method
SetIsActive(bool active)
Manually sets the active state of the BOLO.
public void SetIsActive(bool active)
- Parameters:
active- Description:
trueto set the BOLO as active,falseto deactivate it.
- Description: