AppDisplayInfo AppDisplayInfo AppDisplayInfo AppDisplayInfo Class

Definition

Provides an application's name, description, and logo.

public : sealed class AppDisplayInfo : IAppDisplayInfopublic sealed class AppDisplayInfo : IAppDisplayInfoPublic NotInheritable Class AppDisplayInfo Implements IAppDisplayInfo// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Remarks

This class can be used to get information about applications that are registered as protocol handlers. You can get an instance of this class from AppInfo.DisplayInfo.

Properties

Description Description Description Description

Gets the application's description.

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

The description of the application as defined in the package manifest (Package.appxmanifest).

DisplayName DisplayName DisplayName DisplayName

Gets the application's display name.

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

The display name of the application as defined in the package manifest (Package.appxmanifest).

Methods

GetLogo(Size) GetLogo(Size) GetLogo(Size) GetLogo(Size)

Get the application's logo.

public : RandomAccessStreamReference GetLogo(Size size)public RandomAccessStreamReference GetLogo(Size size)Public Function GetLogo(size As Size) As RandomAccessStreamReference// You can use this method in JavaScript.
Parameters
size
Size Size Size Size

The size of the rectangle in which the logo must fit.

Returns

The largest logo in your Package.appxmanifest file that will fit in the specified Size.