You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var notification = new AppNotificationBuilder()
.AddText("Send a message.")
.AddTextBox("textBox")
.BuildNotification();
AppNotificationManager.Default.Show(notification);
should be something like (using "foo" and "bar"):
var notification = new AppNotificationBuilder()
.AddArgument("foo", "bar")
.AddText("Send a message.")
.AddTextBox("textBox")
.BuildNotification();
AppNotificationManager.Default.Show(notification);
I believe there's a typo in the Examples section.
should be something like (using "foo" and "bar"):
and the XML would be:
Document Details
⚠ Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.
The text was updated successfully, but these errors were encountered: