An entry in the exception log.
Namespace: Autodesk.iLogic.Interfaces
Assembly: Autodesk.iLogic.Interfaces (in Autodesk.iLogic.Interfaces.dll) Version: 30.0
Syntax
VB
Public Interface ExceptionLogEntry
C#
public interface ExceptionLogEntry
The ExceptionLogEntry type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() | Context |
Gets the context in which the exception was thrown.
|
![]() | ExceptionType |
Gets the exception type. This is a .NET type name including namespace (e.g. "System.ArgumentException").
|
![]() | FullDetails |
Gets the full details of the exception, including the stack trace. This is the result of Exception.ToString().
|
![]() | FullDocumentName |
Gets the full document name. This will usually be the same as the full file name. (For assemblies, it may have a model state name appended.)
|
![]() | LineNumber |
Gets the rule line number on which the exception was thrown.
If this is 0 or negative, then the line number is not known.
This number will be valid only if the Context property is equal to ExceptionContext.RuleRunning.
|
![]() | Message |
Gets the Exception.Message property from the exception.
|
![]() | RuleName |
Gets the rule name.
|