Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
MIMEDocument
Last updated at 1:33 pm UTC on 2 May 2019
Object subclass: #MIMEDocument
	instanceVariableNames: 'mainType subType content url'
	classVariableNames: 'MIMEdatabase'
	poolDictionaries: ''
	category: 'Network-Url'


is returned by for example

 mimeDoc :='http://wiki.squeak.org/squeak/2782' asUrl retrieveContents.

 mimeDoc contentType
                            text/html

 mimeDoc charset
                            iso-8859-1


 content
	"Answer the receiver's raw data."
	
	^ content

 contents
	"Compatibility with stream protocol"
	^self content

 text
	"Compatibility with MailMessage protocol"
	^self contents