Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
ToastStatusMessage(StatusMessage) Constructor
Definition
Namespace: Microsoft.CommandPalette.Extensions.Toolkit
Initializes a new instance of the ToastStatusMessage class with its Message property set to message.
public ToastStatusMessage(StatusMessage message)
{
Message = message;
}
Parameters
message StatusMessage
The StatusMessage to be displayed in the toast notification.
ToastStatusMessage(String) Constructor
Definition
Namespace: Microsoft.CommandPalette.Extensions.Toolkit
Initializes a new instance of the ToastStatusMessage class with its Message property set to text.
public ToastStatusMessage(string text)
{
Message = new StatusMessage() { Message = text };
}
Parameters
text String
The message to be displayed in the toast notification.
Windows developer