|
|
LOGICAL IsFormEncoded (character)
|
/* Indicates whether a given MIME type is a form encoded type
@param character The mime type
@return logical TRUE iff the input type is valid and form-encoded */
|
|
|
LOGICAL IsJson (character)
|
/* Indicates whether a given MIME type is JSON
@param character The mime type
@return logical TRUE iff the input type is valid and JSON */
|
|
|
LOGICAL IsMultipart (character)
|
/* Indicates whether a given MIME type is a multipart type
@param character The mime type
@return logical TRUE iff the input type is valid and multipart */
|
|
|
LOGICAL IsXML (character)
|
/* Indicates whether a given MIME type is XML
@param character The mime type
@return logical TRUE iff the input type is valid and XML */
|
|
|
CHARACTER SplitType (character)
|
/* Strips the vendor prefix and any parmeters from the input type, and
returns the type and subtype in an array
@param character a MIME type
@return character[2] An array of the type [1] and subtype [2] */
|