Creates a new instance of the toast message class with the given message.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
message 
As 
String _
)
C#
public 
ToastMessage(
	
string 
message
)
Visual C++
public:
ToastMessage(
	
String^ 
message
)
JavaScript

Microsoft.Rtc.Collaboration.ToastMessage = 
function(
message);

Parameters

message
Type: String
The toast message.

Remarks

A toast message is always created with ContentType of "text/plain".

See Also