OemSupportInfo.SupportAppLink 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 the protocol handler link to the OEM-built support app that will be launched instead of the web URL.
public:
property Uri ^ SupportAppLink { Uri ^ get(); };
Uri SupportAppLink();
public System.Uri SupportAppLink { get; }
var uri = oemSupportInfo.supportAppLink;
Public ReadOnly Property SupportAppLink As Uri
Property Value
The protocol handler link to the OEM-built support app.
Examples
In the following app manifest file snippet, the Protocol Name is contoso-contact-support so this will be the value that will be used for SupportAppLink.
<Extensions>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="contoso-contact-support">
<uap:DisplayName>contoso-resource:appDisplayName</uap:DisplayName>
</uap:Protocol>
</uap:Extension>
</Extensions>