Microsoft Information Protection (MIP) SDK for C++: Reference 1.15
Doxygen-generated documentation for MIP SDK written in C++
Loading...
Searching...
No Matches
msg_inspector.h File Reference
#include <memory>
#include <vector>
#include "mip/file/file_inspector.h"
#include "mip/mip_namespace.h"
+ Include dependency graph for msg_inspector.h:

Go to the source code of this file.

Classes

class  MsgAttachmentData
 
class  MsgInspector
 

Enumerations

enum class  BodyType : unsigned int {
  UNKNOWN = 0 ,
  TXT = 1 ,
  HTML = 2 ,
  RTF = 3
}
 Body type enumerator. More...
 

Enumeration Type Documentation

◆ BodyType

enum class BodyType : unsigned int
strong

Body type enumerator.

Enumerator
UNKNOWN 

Unkown body type.

TXT 

Text style body type, encoding is returned as utf8.

HTML 

HTML style body type, encoding is returned as utf8.

RTF 

RTF style body type, a binary format.

Definition at line 42 of file msg_inspector.h.

42 : unsigned int {
43 UNKNOWN = 0, /**< Unkown body type */
44 TXT = 1, /**< Text style body type, encoding is returned as utf8 */
45 HTML = 2, /**< HTML style body type, encoding is returned as utf8 */
46 RTF = 3 /**< RTF style body type, a binary format */
47};
@ HTML
HTML style body type, encoding is returned as utf8.
@ TXT
Text style body type, encoding is returned as utf8.
@ UNKNOWN
Unkown body type.
@ RTF
RTF style body type, a binary format.