FormattedOutboundChatMessage Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| FormattedOutboundChatMessage() |
Initializes a new instance of the Object class. |
| FormattedOutboundChatMessage(Boolean) |
Initializes a new instance of the FormattedOutboundChatMessage class, optionally marking the message as an alert. |
| FormattedOutboundChatMessage(Boolean, String) |
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. |
FormattedOutboundChatMessage()
Initializes a new instance of the Object class.
public:
FormattedOutboundChatMessage();
public FormattedOutboundChatMessage();
Public Sub New ()
Applies to
FormattedOutboundChatMessage(Boolean)
Initializes a new instance of the FormattedOutboundChatMessage class, optionally marking the message as an alert.
public:
FormattedOutboundChatMessage(bool isAlert);
public FormattedOutboundChatMessage(bool isAlert);
new Microsoft.Rtc.Collaboration.PersistentChat.FormattedOutboundChatMessage : bool -> Microsoft.Rtc.Collaboration.PersistentChat.FormattedOutboundChatMessage
Public Sub New (isAlert As Boolean)
Parameters
- isAlert
- Boolean
if set to true this will be an alert message."/>.
Applies to
FormattedOutboundChatMessage(Boolean, String)
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.
public:
FormattedOutboundChatMessage(bool isAlert, System::String ^ storyTitle);
public FormattedOutboundChatMessage(bool isAlert, string storyTitle);
new Microsoft.Rtc.Collaboration.PersistentChat.FormattedOutboundChatMessage : bool * string -> Microsoft.Rtc.Collaboration.PersistentChat.FormattedOutboundChatMessage
Public Sub New (isAlert As Boolean, storyTitle As String)
Parameters
- isAlert
- Boolean
if set to true this is an alert story message.
- storyTitle
- String
The story title.