C# Class Amazon.SimpleEmail.Model.Content

Represents textual data, plus an optional character set specification.

By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS.

Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Content ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

Content ( string data ) : System

Instantiates Content with the parameterized properties

Private Methods

Method Description
IsSetCharset ( ) : bool
IsSetData ( ) : bool

Method Details

Content() public method

Empty constructor used to set properties independently even when a simple constructor is available
public Content ( ) : System
return System

Content() public method

Instantiates Content with the parameterized properties
public Content ( string data ) : System
data string The textual data of the content.
return System