Fields
| Name | Type | Description |
|---|---|---|
Type | int | The type of the error record. For possible values, see LogRecordType. |
SessionId | int | The ID of the connection to the Application Server. |
MachineId | string | The ID of the workstation. |
RoleId | RoleType[] | The ID of the user’s role. |
TaskId | int | The ID of the task. |
ProjectId | int | The ID of the project. |
BatchId | int | The ID of the batch. |
DocumentId | int | The ID of the document. |
PageId | int | The ID of the page. |
Comment | string | A brief description of the event. |
Details | string | A full description of the event. |
Time | long | The date and time the method was called on the workstation, as a FILETIME value. To convert the value, use the conversion example after this table. |
Time between long and DateTime in C# as follows:
DateTime dTime;
long lTime;
...
// conversion from long to DateTime
dTime = DateTime.FromFileTime(lTime);
...
// conversion from DateTime to long
lTime = dTime.ToFileTime();
