Reset static method

int Reset()

Resets the activation and trial data stored in the machine. This function is meant for developer testing only. Note: The function does not reset local(unverified) trial data.

The function throws a LexActivatorException on error.

Implementation

static int Reset() {
  int status = _lexActivatorNative.Reset();
  if (LexStatusCodes.LA_OK != status) {
    throw LexActivatorException(status);
  }
  return status;
}