Initializes a new instance of the FormattedOutboundChatMessage class. This constructor is used to create a story message. Story messages have a title which appears in the chat as a clickable link. When clicked, a dialog appears which shows the remaining message content.

Namespace:  Microsoft.Rtc.Collaboration.GroupChat
Assembly:  Microsoft.Rtc.Collaboration.GroupChat(in Microsoft.Rtc.Collaboration.GroupChat.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
isAlert 
As 
Boolean, _
	
storyTitle 
As 
String _
)
Visual Basic (Usage)
Dim 
isAlert 
As 
Boolean
Dim 
storyTitle 
As 
String

Dim 
instance 
As New 

FormattedOutboundChatMessage(
isAlert, _
	
storyTitle)
C#
public 
FormattedOutboundChatMessage(
	
bool 
isAlert,
	
string 
storyTitle
)

Parameters

isAlert
Type: System . . :: . . Boolean

if set to true this is an alert story message.

storyTitle
Type: System . . :: . . String

The story title.

See Also