:: com :: sun :: star :: datatransfer ::

interface XMimeContentTypeFactory
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XMimeContentTypeFactory
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
Implementations of this interface do create a ::com::sun::star::datatransfer::XMimeContentType from a given string that represents a MIME content-type (see Rfc2045 and Rfc2046 ).

Methods' Summary
createMimeContentType Creates an object that implements ::com::sun::star::datatransfer::XMimeContentType .  
Methods' Details
createMimeContentType
::com::sun::star::datatransfer::XMimeContentType
createMimeContentType( [in] string  aContentType )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
Creates an object that implements ::com::sun::star::datatransfer::XMimeContentType .
Parameter aContentType
A string that represents a MIME content-type as specified in Rfc2045 and Rfc2046 .
Returns
An object that implements ::com::sun::star::datatransfer::XMimeContentType .
Throws
com::sun::star::lang::IllegalArgumentException if the string does not conform to Rfc2045 and Rfc2046 ;

Exception: Quoted parameter values may contain spaces.

See also
::com::sun::star::datatransfer::XMimeContentType
Top of Page