Packagedom.objects
Classpublic class MimeTypeArray
InheritanceMimeTypeArray Inheritance Object

Introduced in: DOM 0 

Contains a list of MimeType objects representing the MIME types recognized by the browser.

See also

MDC - window.navigator.mimeTypes


Public Properties
 PropertyDefined By
  DOM 0 length : Number
[read-only] The number of MimeTypes in the array.
MimeTypeArray
Public Methods
 MethodDefined By
  
DOM 0 item(index:Number):MimeType
Retrieves a MimeType by index.
MimeTypeArray
  
Retrives a MimeType by name.
MimeTypeArray
Property Detail
DOM 0 lengthproperty
length:Number  [read-only]

Introduced in: DOM 0 

The number of MimeTypes in the array.


Implementation
    public function get length():Number

See also

Method Detail
DOM 0 item()method
public function item(index:Number):MimeType

Introduced in: DOM 0 

Retrieves a MimeType by index.

Parameters

index:Number — Index of the MimeType

Returns
MimeType — The specified MimeType

See also

DOM 0 nameItem()method 
public function nameItem(name:DOMString):MimeType

Introduced in: DOM 0 

Retrives a MimeType by name.

Parameters

name:DOMString — Name of the MimeType

Returns
MimeType — The specified MimeType

See also