Message.ConversationTopic Property

Independentsoft MSG .NET

Message ConversationTopic Property MSG .NET Class Library
Contains the topic of the first message in a conversation thread.

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

Syntax

public string ConversationTopic { get; set; }
public string ConversationTopic { get; set; }
Public Property ConversationTopic As String 
	Get 
	Set
Public Property ConversationTopic As String 
	Get 
	Set
Dim instance As Message 
Dim value As String 

value = instance.ConversationTopic

instance.ConversationTopic = value
Dim instance As Message 
Dim value As String 

value = instance.ConversationTopic

instance.ConversationTopic = value
/** @property */
public String get_ConversationTopic()
/** @property */
public void set_ConversationTopic(String value)
/** @property */
public String get_ConversationTopic()
/** @property */
public void set_ConversationTopic(String value)
function get ConversationTopic () : String 
function set ConversationTopic (value : String)
function get ConversationTopic () : String 
function set ConversationTopic (value : String)
function get_ConversationTopic();
function set_ConversationTopic(value);
function get_ConversationTopic();
function set_ConversationTopic(value);

Property Value

Type: OnlineString
The conversation topic.
Remarks

A conversation thread represents a series of messages and replies. These properties are set for the first message in a thread, usually to the NormalizedSubject property. Subsequent messages in the thread should use the same topic without modification.
See Also