OemSupportInfo OemSupportInfo OemSupportInfo OemSupportInfo Class

Definition

Some information relates to pre-released product which may be substantially modified before it’s commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Prerelease APIs are identified by a Prerelease label.

[Contains prerelease APIs.]
Provides support information about the manufacturer of the device. This includes the OEM’s name, web site address, and other support details.

public : sealed class OemSupportInfo : IOemSupportInfopublic sealed class OemSupportInfo : IOemSupportInfoPublic NotInheritable Class OemSupportInfo Implements IOemSupportInfo// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows Desktop Extension SDK (introduced v10.0.16257.0)
API contract
Windows.System.Profile.SystemManufacturers.SystemManufacturersContract (introduced v2)

Properties

SupportAppLink SupportAppLink SupportAppLink SupportAppLink

Prerelease. Gets the protocol handler link to the OEM-built support app that will be launched instead of the web URL.

public : Uri SupportAppLink { get; }public Uri SupportAppLink { get; }Public ReadOnly Property SupportAppLink As Uri// You can use this property in JavaScript.
Value
Uri Uri Uri Uri

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>

SupportLink SupportLink SupportLink SupportLink

Prerelease. Gets the Uniform Resource Identifier (URI) for the Original Equipment Manufacturer (OEM) support web site.

public : Uri SupportLink { get; }public Uri SupportLink { get; }Public ReadOnly Property SupportLink As Uri// You can use this property in JavaScript.
Value
Uri Uri Uri Uri

The URI for the OEM support web site.

SupportProvider SupportProvider SupportProvider SupportProvider

Prerelease. Gets the name of the support provider for the device.

public : PlatForm::String SupportProvider { get; }public string SupportProvider { get; }Public ReadOnly Property SupportProvider As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The name of the support provider for the device.

See Also