Message.Priority Property

Independentsoft MSG .NET

Message Priority Property MSG .NET Class Library
Contains the relative priority of a message.

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

Syntax

public Priority Priority { get; set; }
public Priority Priority { get; set; }
Public Property Priority As Priority 
	Get 
	Set
Public Property Priority As Priority 
	Get 
	Set
Dim instance As Message 
Dim value As Priority 

value = instance.Priority

instance.Priority = value
Dim instance As Message 
Dim value As Priority 

value = instance.Priority

instance.Priority = value
/** @property */
public Priority get_Priority()
/** @property */
public void set_Priority(Priority value)
/** @property */
public Priority get_Priority()
/** @property */
public void set_Priority(Priority value)
function get Priority () : Priority 
function set Priority (value : Priority)
function get Priority () : Priority 
function set Priority (value : Priority)
function get_Priority();
function set_Priority(value);
function get_Priority();
function set_Priority(value);

Property Value

Type: Priority
The priority.
Remarks

This property and the Importance property should not be confused. Importance indicates a value to users, while priority indicates the order or speed at which the message should be sent by the messaging system software. Higher priority usually indicates a higher cost. Higher importance usually is associated with a different display by the user interface.
See Also