Share via


OemSupportInfo.SupportAppLink Property

Definition

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>

Applies to