BodyPart

BodyPart class

Specifies details about the message part of an e-mail in a response. The BodyPart element MUST be included in a command response when the BodyPartPreference is specified in a request.

public class BodyPart

Constructors

Name Description
BodyPart() The default constructor.

Properties

Name Description
Data { get; set; } The content of the Data element is a string in the format that is specified by the Type property. If the value of the Type is RTF, the value of the Data element is encoded using base64 encoding. If the Truncated property set true, the data in the Data element is truncated. The EstimatedDataSize property provides a rough estimation of the actual size of the complete content of the Data string.
EstimatedDataSize { get; set; } Specifies an informational estimate of the size of the data associated with the parent element. The EstimatedDataSize element SHOULD be presented whenever the Truncated element is set to TRUE
Preview { get; set; } Contains the Unicode plain text message or message part preview returned to the client.
Status { get; set; } Contains a code and description that indicates the success or failure of the operation
Truncated { get; set; } Specifies whether the body of the item has been truncated according to the BodyPreference element indicated by the client. If the value is TRUE, then the body of the item has been truncated. If the value is FALSE, or Truncated property is not set, then the body of the item has not been truncated.
Type { get; set; } Specifies the format type of the body content of the item.

See Also