StoreServicesFeedbackLauncher.LaunchAsync Method

Definition

Overloads

LaunchAsync()

Launches Feedback Hub and takes users to your app's area so they can submit and upvote feedback.

LaunchAsync(IMap<String,String>)

Launches Feedback Hub and takes users to your app's area so they can submit and upvote feedback. This overload passes a dictionary of metadata that you want to associate with the user feedback.

LaunchAsync()

Launches Feedback Hub and takes users to your app's area so they can submit and upvote feedback.

C#
[Windows.Foundation.Metadata.Overload("LaunchAsync")]
public IAsyncOperation<bool> LaunchAsync();

Returns

Returns true if the Feedback Hub is installed on the device and the method successfully opened the Feedback Hub; otherwise, false.

Attributes

Remarks

Use the IsSupported property to determine whether Feedback Hub is installed on the device. If Feedback Hub is installed, you can use this method to launch Feedback Hub from your app. For a code example that demonstrates how to use this method, see Launch Feedback Hub from your app.

See also

Applies to

Store Store
Product Versions
Store Store

LaunchAsync(IMap<String,String>)

Launches Feedback Hub and takes users to your app's area so they can submit and upvote feedback. This overload passes a dictionary of metadata that you want to associate with the user feedback.

C#
[Windows.Foundation.Metadata.Overload("LaunchWithInputDataAsync")]
public IAsyncOperation<bool> LaunchAsync(IDictionary<string,string> inputData);

Parameters

inputData

IDictionary<String,String>

A dictionary of key and value pairs that contain metadata that you want to associate with the user feedback, such as the name of the page the user is on or the game level they completed. The following keys are reserved for use by Microsoft: feedbackid, src, form, screenshot, metadata, uri, foldername, searchstring, newfeedback, yes, and feedbackfiles.

Returns

Returns true if the Feedback Hub is installed on the device and the method successfully opened the Feedback Hub; otherwise, false.

Attributes

Remarks

Use the IsSupported() property to determine whether Feedback Hub is installed on the device. If Feedback Hub is installed, you can use this method to launch Feedback Hub from your app. For a code example that demonstrates how to use this method, see Launch Feedback Hub from your app.

See also

Applies to

Store Store
Product Versions
Store Store