FolderPickerContinuationEventArgs
FolderPickerContinuationEventArgs
FolderPickerContinuationEventArgs
FolderPickerContinuationEventArgs
Class
Definition
Provides information about an activated event that fires after the app was suspended for a folder picker operation.
public : sealed class FolderPickerContinuationEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IContinuationActivatedEventArgs, IFolderPickerContinuationEventArgspublic sealed class FolderPickerContinuationEventArgs : IActivatedEventArgs, IActivatedEventArgsWithUser, IContinuationActivatedEventArgs, IFolderPickerContinuationEventArgsPublic NotInheritable Class FolderPickerContinuationEventArgs Implements IActivatedEventArgs, IActivatedEventArgsWithUser, IContinuationActivatedEventArgs, IFolderPickerContinuationEventArgs// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
You access a FolderPickerContinuationEventArgs object when you implement an event handler that responds to Activated events when ActivationKind is PickFolderContinuation.
For an example that uses the FolderPickerContinuationEventArgs class, see How to continue your Windows Phone Store app after calling an AndContinue method.
Properties
ContinuationData ContinuationData ContinuationData ContinuationData
Gets a set of values populated by the app before a FolderPicker operation that deactivates the app in order to provide context when the app is activated.
public : ValueSet ContinuationData { get; }public ValueSet ContinuationData { get; }Public ReadOnly Property ContinuationData As ValueSet// You can use this property in JavaScript.
A set of values populated by the app before a FolderPicker operation that deactivates the app.
Folder Folder Folder Folder
Gets the folder selected by the user during the folder picker operation.
public : StorageFolder Folder { get; }public StorageFolder Folder { get; }Public ReadOnly Property Folder As StorageFolder// You can use this property in JavaScript.
The folder selected by the user during the folder picker operation.
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.ContinueFolderPicker 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
One of the enumeration values.
SplashScreen SplashScreen SplashScreen SplashScreen
Gets a SplashScreen object that 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.
The object that provides splash screen information.
User User User User
Gets the user that 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.
| Device family |
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v3)
|
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.