====== AddMIMEFilter ====== Adds [[http://en.wikipedia.org/wiki/MIME|MIME]] type, which will be ignored while documents loading. ===== Syntax ===== procedure AddMIMEFilter(aMIMEType: string); ==== Parameters ==== * **//aMIMEType//** * //type:// string * //functions:// MIME type or [[http://en.wikipedia.org/wiki/Internet_media_type|basic MIME type]]. ===== Notes ===== ===== Examples ===== -//Forbid to download data with type "application/pdf" AddMimeFilter('application/pdf'); -//Forbid to download all the data with type, started with "application/" AddMimeFilter('application');