The collection of CError objects (error and warning messages) associated with this object instance

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public CErrors Errors { get; }
Visual Basic (Declaration)
Public ReadOnly Property Errors As CErrors
Visual C++
public:
property CErrors^ Errors {
	CErrors^ get ();
}

Field Value

A collection of 0 or more warning and error messages generated by this object's properties and methods.

Remarks

Whenever an error or warning is detected by the code it is added to this collection in the object instance in which it is found. Often, errors found in child objects are "combined" with the errors in the parent's collection so that they can all be viewed in one place.

If the user account that is used to login to iMIS is not set to throw exceptions on errors or warnings, it is very important to check this property frequently to ensure that the properties being set or methods being called on this object are accepting the data or performing the tasks without problems.

See Also