WebUIContactPanelActivatedEventArgs
WebUIContactPanelActivatedEventArgs
WebUIContactPanelActivatedEventArgs
WebUIContactPanelActivatedEventArgs
Class
Definition
Provides data when an app is activated because it uses the Contact Panel.
public : sealed class WebUIContactPanelActivatedEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IContactPanelActivatedEventArgs, IActivatedEventArgsDeferralpublic sealed class WebUIContactPanelActivatedEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IContactPanelActivatedEventArgs, IActivatedEventArgsDeferralPublic NotInheritable Class WebUIContactPanelActivatedEventArgs Implements IActivatedEventArgs, IActivatedEventArgsWithUser, IContactPanelActivatedEventArgs, IActivatedEventArgsDeferral// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 Creators Update (introduced v10.0.15063.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v4)
|
Properties
ActivatedOperation ActivatedOperation ActivatedOperation ActivatedOperation
Gets the operation that activated the app.
public : ActivatedOperation ActivatedOperation { get; }public ActivatedOperation ActivatedOperation { get; }Public ReadOnly Property ActivatedOperation As ActivatedOperation// You can use this property in JavaScript.
The operation that activated the app.
ContactPanel ContactPanel ContactPanel ContactPanel
Gets the contact panel.
public : ContactPanel ContactPanel { get; }public ContactPanel ContactPanel { get; }Public ReadOnly Property ContactPanel As ContactPanel// You can use this property in JavaScript.
The contact panel.
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.
The ActivationKind.Contact enumeration value.
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.
- Value
- ApplicationExecutionState ApplicationExecutionState ApplicationExecutionState ApplicationExecutionState
The execution state of the app before it was activated.
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.
An object that provides splash screen information.
User User User User
Gets the user the app was activated for.
public : User User { get; }public User User { get; }Public ReadOnly Property User As User// You can use this property in JavaScript.
Remarks
This property returns the logged-in user on platforms that only support single-user sessions. For platforms that support multiple users in a session (such as Xbox) this property returns the logged-in user that the app was activated for.
This property returns null when a multi-user application is activated with no specific user context.
Multi-user apps can use this property to allow or restrict app behavior. For example, you might restrict access to content or features based on the user’s credentials.