AddMIMEFilter

Adds MIME type, which will be ignored while documents loading.

Syntax

procedure AddMIMEFilter(aMIMEType: string);

Parameters

Notes

Examples

  1. //Forbid to download data with type "application/pdf"
    AddMimeFilter('application/pdf');
  2. //Forbid to download all the data with type, started with "application/"
    AddMimeFilter('application');