LockScreenCallActivatedEventArgs LockScreenCallActivatedEventArgs LockScreenCallActivatedEventArgs LockScreenCallActivatedEventArgs Class

Definition

Provides event information when communication to and from the lock screen is required.

JavaScript This type appears as WebUILockScreenCallActivatedEventArgs.

public : sealed class LockScreenCallActivatedEventArgs : IActivatedEventArgs, IApplicationViewActivatedEventArgs, ILaunchActivatedEventArgs, ILockScreenCallActivatedEventArgs, IViewSwitcherProviderpublic sealed class LockScreenCallActivatedEventArgs : IActivatedEventArgs, IApplicationViewActivatedEventArgs, ILaunchActivatedEventArgs, ILockScreenCallActivatedEventArgs, IViewSwitcherProviderPublic NotInheritable Class LockScreenCallActivatedEventArgs Implements IActivatedEventArgs, IApplicationViewActivatedEventArgs, ILaunchActivatedEventArgs, ILockScreenCallActivatedEventArgs, IViewSwitcherProvider// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows Desktop Extension SDK (introduced v10.0.10240.0)
API contract
Windows.ApplicationModel.Activation.ActivatedEventsContract (introduced v1)

Remarks

This object is accessed when you respond to Activated events when ActivationKind is LockScreenCall.

Properties

Arguments Arguments Arguments Arguments

Gets the arguments that are passed to the app to launch it.

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

The list of arguments.

CallUI CallUI CallUI CallUI

Gets the UI that handles communication to and from the lock screen.

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

The UI that handles communication to and from the lock screen.

See Also

CurrentlyShownApplicationViewId CurrentlyShownApplicationViewId CurrentlyShownApplicationViewId CurrentlyShownApplicationViewId

Gets the identifier for the currently shown app view.

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

The identifier for the currently shown app view.

Kind Kind Kind Kind

Gets the activation type.

public : ActivationKind Kind { get; }public ActivationKind Kind { get; }Public ReadOnly Property Kind As ActivationKind// You can use this property in JavaScript.

PreviousExecutionState PreviousExecutionState PreviousExecutionState PreviousExecutionState

Gets the execution state of the app before it was activated.

public : ApplicationExecutionState PreviousExecutionState { get; }public ApplicationExecutionState PreviousExecutionState { get; }Public ReadOnly Property PreviousExecutionState As ApplicationExecutionState// You can use this property in JavaScript.

SplashScreen SplashScreen SplashScreen SplashScreen

Gets the splash screen object, which provides information about the transition from the splash screen to the activated app.

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

The object that provides splash screen information.

TileId TileId TileId TileId

Gets the identifier of the source that launched the app.

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

The identifier of the tile.

ViewSwitcher ViewSwitcher ViewSwitcher ViewSwitcher

Gets the view switcher object that allows you to set the view for the application.

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

Use the ActivationViewSwitcher to show or switch the view in response to the activation. The value will be null in hosted scenarios such as Share and File Picker activations.