AppNotificationActivatedEventArgs.UserInput Property
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.
Gets a map of IDs and values of the input elements of an app notification.
public:
property IMap<Platform::String ^, Platform::String ^> ^ UserInput { IMap<Platform::String ^, Platform::String ^> ^ get(); };
IMap<winrt::hstring, winrt::hstring const&> UserInput();
public IDictionary<string,string> UserInput { get; }
var iMap = appNotificationActivatedEventArgs.userInput;
Public ReadOnly Property UserInput As IDictionary(Of String, String)
Property Value
A dictionary where the key is the ID of an app notification input, such as a TextBox, and the value is the value of the input.