Message.MessageFlags Property

Independentsoft MSG .NET

Message MessageFlags Property MSG .NET Class Library
Contains a bitmask of flags that indicate the origin and current state of a message.

Namespace: Independentsoft.Msg
Assembly: Independentsoft.Msg (in Independentsoft.Msg.dll) Version: 2.0.140.29868

Syntax

public IList<MessageFlag> MessageFlags { get; }
public IList<MessageFlag> MessageFlags { get; }
Public ReadOnly Property MessageFlags As IList(Of MessageFlag)
	Get
Public ReadOnly Property MessageFlags As IList(Of MessageFlag)
	Get
Dim instance As Message 
Dim value As IList(Of MessageFlag)

value = instance.MessageFlags
Dim instance As Message 
Dim value As IList(Of MessageFlag)

value = instance.MessageFlags
/** @property */
public IList<MessageFlag> get_MessageFlags()
/** @property */
public IList<MessageFlag> get_MessageFlags()
function get MessageFlags () : IList<MessageFlag>
function get MessageFlags () : IList<MessageFlag>
function get_MessageFlags();
function get_MessageFlags();

Property Value

Type: OnlineIList MessageFlag 
The message flags.
Remarks

This property is a nontransmittable message property exposed at both the sending and receiving ends of a transmission, with different values depending upon the client application or store provider involved. This property is initialized by the client or message store provider when a message is created and saved for the first time and then updated periodically by the message store provider, a transport provider, and the MAPI spooler as the message is processed and its state changes. This property exists on a message both before and after submission, and on all copies of the received message. Although it is not a recipient property, it is exposed differently to each recipient according to whether it has been read or modified by that recipient.
See Also