Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Your code must be thread-safe. Generally this is automatically the case if you do not use static variables or unmanaged resources.
  • If your code uses unmanaged resources, implement the IDisposable interface.
  • Keep in mind that your extension class instance may be alive for days, weeks or months. Make sure that you do not allocate memory with each call without releasing it.

 

Exceptions

  • If your code raises exceptions, these will be written to the Windows event log (in almost all cases).
  • Do not implement your own custom exceptions. The extension framework does not allow for this.

 

 

If you need help do not hesitate to ask your questions at wordbee.zendesk.com

...