I am using following c# code to get an e-mail from exchange
var messageInfo = client.GetMessageInfo(item.Id, EwsItemFields.Envelope | EwsItemFields.Body);
...
var text = messageInfo.Body.Content;
Because of security reasons i always need the body content as text an not as html.
When using EWS (Microsoft) i can define a PropertySet and set the RequestBodyType as follows
ps.RequestedBodyType = BodyType.Text
How can i do this with Rebex Ews