> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LogRecord

> LogRecord-Datentyp in der ABBYY FlexiCapture Web Services API: speichert einen Eintrag im Ereignisprotokoll mit Typ, Sitzung, Rolle, Projekt, Batch, Dokument und Zeitstempel.

<div id="what-it-does">
  ## Was es macht
</div>

Der **LogRecord**-Datentyp speichert Fehlerprotokolleinträge.

<div id="fields">
  ## Felder
</div>

<table width="100%">
  <tbody>
    <tr>
      <td>
        <p>
          <strong>Name</strong>
        </p>
      </td>

      <td>
        <p>
          <strong>Typ</strong>
        </p>
      </td>

      <td>
        <p>
          <strong>Beschreibung</strong>
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>Type</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>
          Der Typ des Fehlerprotokolleintrags. Mögliche Werte: siehe <a href="/de/flexi-capture/api/structures/t-log-record-type">LogRecordType</a>.
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>SessionId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID der Verbindung zum Application Server</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>MachineId</p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Die ID der Workstation</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>RoleId</p>
      </td>

      <td>
        <p>
          <a href="/de/flexi-capture/api/structures/t-role-type">RoleType</a>\[]
        </p>
      </td>

      <td>
        <p>Die ID der Benutzerrolle</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>TaskId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID der Aufgabe</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>ProjectId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID des Projekts</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>BatchId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID des Batches</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>DocumentId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID des Dokuments</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>PageId</p>
      </td>

      <td>
        <p>int</p>
      </td>

      <td>
        <p>Die ID der Seite</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>Comment</p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Eine kurze Beschreibung des Ereignisses</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>Details</p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Eine ausführliche Beschreibung des Ereignisses</p>
      </td>
    </tr>

    <tr>
      <td>
        <p>Time</p>
      </td>

      <td>
        <p>long</p>
      </td>

      <td>
        <p>Das Datum und die Uhrzeit, zu denen die Methode auf der Workstation aufgerufen wurde.</p>
        <p>Verwenden Sie zum Konvertieren der Werte die folgenden Methoden (C#):</p>

        <pre>
          <code>DateTime dtTime; long lTime; ... // Konvertierung von DateTime in long dTime = DateTime.FromFileTime(lTime); ... // Konvertierung von long in DateTime lTime = dTime.ToFileTime();</code>
        </pre>
      </td>
    </tr>
  </tbody>
</table>
